summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/arch/stm32f446re-nucleo/Kconfig6
-rw-r--r--src/arch/stm32f446re-nucleo/Makefile.inc12
2 files changed, 9 insertions, 9 deletions
diff --git a/src/arch/stm32f446re-nucleo/Kconfig b/src/arch/stm32f446re-nucleo/Kconfig
index df64674..19e02ed 100644
--- a/src/arch/stm32f446re-nucleo/Kconfig
+++ b/src/arch/stm32f446re-nucleo/Kconfig
@@ -2,9 +2,9 @@ config arch_stm32f446re_nucleo_driver_counter
bool "Cycle Counter"
select meta_driver_counter
-config arch_stm32f446re_nucleo_driver_timer
-bool "Timer with Interrupts"
-select meta_driver_timer
+#config arch_stm32f446re_nucleo_driver_timer
+#bool "Timer with Interrupts"
+#select meta_driver_timer
config arch_stm32f446re_nucleo_driver_uptime
bool "Uptime Counter"
diff --git a/src/arch/stm32f446re-nucleo/Makefile.inc b/src/arch/stm32f446re-nucleo/Makefile.inc
index 578b929..7a11cf5 100644
--- a/src/arch/stm32f446re-nucleo/Makefile.inc
+++ b/src/arch/stm32f446re-nucleo/Makefile.inc
@@ -35,9 +35,9 @@ ifneq ($(findstring counter,${arch_drivers}), )
CONFIG_arch_stm32f446re_nucleo_driver_counter = y
endif
-ifneq ($(findstring timer,${arch_drivers}), )
- CONFIG_arch_stm32f446re_nucleo_driver_timer = y
-endif
+#ifneq ($(findstring timer,${arch_drivers}), )
+# CONFIG_arch_stm32f446re_nucleo_driver_timer = y
+#endif
ifeq (${timer_s}, 1)
CONFIG_arch_stm32f446re_nucleo_driver_uptime = y
@@ -49,9 +49,9 @@ ifdef CONFIG_arch_stm32f446re_nucleo_driver_counter
CXX_TARGETS += src/arch/stm32f446re-nucleo/driver/counter.cc
endif
-ifdef CONFIG_arch_stm32f446re_nucleo_driver_timer
- CXX_TARGETS += src/arch/stm32f446re-nucleo/driver/timer.cc
-endif
+#ifdef CONFIG_arch_stm32f446re_nucleo_driver_timer
+# CXX_TARGETS += src/arch/stm32f446re-nucleo/driver/timer.cc
+#endif
ifdef CONFIG_arch_stm32f446re_nucleo_driver_uptime
COMMON_FLAGS += -DTIMER_S