1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

sys/ztimer: fix kconfig ZTIMER_SEC default

This commit is contained in:
Francisco Molina 2021-12-14 18:44:48 +01:00
parent 5e47fc7e22
commit c21c01b5b9

View File

@ -82,7 +82,7 @@ config MODULE_ZTIMER_SEC
choice
bool "Backend"
depends on MODULE_ZTIMER_SEC
default ZTIMER_SEC_BACKEND_RTT
default ZTIMER_SEC_BACKEND_RTT if !MODULE_ZTIMER_NO_PERIPH_RTT
config ZTIMER_SEC_BACKEND_TIMER
bool "Timer"
@ -91,7 +91,7 @@ config ZTIMER_SEC_BACKEND_TIMER
config ZTIMER_SEC_BACKEND_RTT
bool "RTT"
depends on HAS_PERIPH_RTT
select MODULE_ZTIMER_PERIPH_RTT if !MODULE_ZTIMER_NO_PERIPH_RTT
select MODULE_ZTIMER_PERIPH_RTT
config ZTIMER_SEC_BACKEND_RTC
bool "RTC"