From dd8420431a4abb7174618ddfcaa77624a3182bbe Mon Sep 17 00:00:00 2001 From: Michal Lenc Date: Sun, 6 Jun 2021 21:42:40 +0200 Subject: [PATCH] boards/arm/stm32/nucleo-f446re: fixed wrong qetimer config name Signed-off-by: Michal Lenc --- boards/arm/stm32/nucleo-f446re/src/stm32_bringup.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/boards/arm/stm32/nucleo-f446re/src/stm32_bringup.c b/boards/arm/stm32/nucleo-f446re/src/stm32_bringup.c index fce98f1d81d..c50fba2550d 100644 --- a/boards/arm/stm32/nucleo-f446re/src/stm32_bringup.c +++ b/boards/arm/stm32/nucleo-f446re/src/stm32_bringup.c @@ -159,7 +159,7 @@ int stm32_bringup(void) #ifdef CONFIG_SENSORS_QENCODER /* Initialize and register the qencoder driver */ - ret = board_qencoder_initialize(0, CONFIG_NUCLEO_F401RE_QETIMER); + ret = board_qencoder_initialize(0, CONFIG_NUCLEO_F446RE_QETIMER); if (ret != OK) { syslog(LOG_ERR,