mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2025-12-17 02:23:49 +01:00
Merge pull request #18805 from MrKevinWeiss/pr/fix/nightlybpfail
Fix kconfig mismatch breaking nightlies
This commit is contained in:
commit
1481df8a31
@ -17,4 +17,11 @@ config BOARD_BLACKPILL_128KIB
|
|||||||
|
|
||||||
select HAS_HIGHLEVEL_STDIO
|
select HAS_HIGHLEVEL_STDIO
|
||||||
|
|
||||||
|
# HACK: This is added due to the make resolution
|
||||||
|
# make will select timer backend, probably due to the USBUS
|
||||||
|
# and kconfig cannot select if something is already selected like make
|
||||||
|
choice ZTIMER_MSEC_BACKEND
|
||||||
|
default ZTIMER_MSEC_BACKEND_TIMER if MODULE_PERIPH_RTC
|
||||||
|
endchoice
|
||||||
|
|
||||||
source "$(RIOTBOARD)/common/blxxxpill/Kconfig"
|
source "$(RIOTBOARD)/common/blxxxpill/Kconfig"
|
||||||
|
|||||||
@ -17,4 +17,11 @@ config BOARD_BLUEPILL_128KIB
|
|||||||
|
|
||||||
select HAS_HIGHLEVEL_STDIO
|
select HAS_HIGHLEVEL_STDIO
|
||||||
|
|
||||||
|
# HACK: This is added due to the make resolution
|
||||||
|
# make will select timer backend, probably due to the USBUS
|
||||||
|
# and kconfig cannot select if something is already selected like make
|
||||||
|
choice ZTIMER_MSEC_BACKEND
|
||||||
|
default ZTIMER_MSEC_BACKEND_TIMER if MODULE_PERIPH_RTC
|
||||||
|
endchoice
|
||||||
|
|
||||||
source "$(RIOTBOARD)/common/blxxxpill/Kconfig"
|
source "$(RIOTBOARD)/common/blxxxpill/Kconfig"
|
||||||
|
|||||||
@ -59,7 +59,7 @@ config MODULE_ZTIMER_MSEC
|
|||||||
bool "Milliseconds"
|
bool "Milliseconds"
|
||||||
select MODULE_ZTIMER
|
select MODULE_ZTIMER
|
||||||
|
|
||||||
choice
|
choice ZTIMER_MSEC_BACKEND
|
||||||
bool "Backend"
|
bool "Backend"
|
||||||
depends on MODULE_ZTIMER_MSEC
|
depends on MODULE_ZTIMER_MSEC
|
||||||
default ZTIMER_MSEC_BACKEND_RTT if !MODULE_ZTIMER_NO_PERIPH_RTT
|
default ZTIMER_MSEC_BACKEND_RTT if !MODULE_ZTIMER_NO_PERIPH_RTT
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user