mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2025-01-17 23:12:45 +01:00
c140eedace
In `main.c:115` the call `ztimer_sleep(ZTIMER_MSEC, _periodic_ctx.period.ms);` depends on the module `ztimer_msec`. Apparently, this was previously pulled in indirectly and the missing dep has gone unnoticed. This adds the dep explicitly to fix compilation issues that now have surfaced in the CI.
14 lines
324 B
Makefile
14 lines
324 B
Makefile
include ../Makefile.tests_common
|
|
|
|
USEMODULE += shell
|
|
USEMODULE += shell_democommands
|
|
USEMODULE += ztimer_msec
|
|
|
|
FEATURES_REQUIRED += rust_target
|
|
|
|
# Currently unknown, something related to the LED_PORT definition that doesn't
|
|
# pass C2Rust's transpilation
|
|
BOARD_BLACKLIST := ek-lm4f120xl
|
|
|
|
include $(RIOTBASE)/Makefile.include
|