1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-01-17 23:12:45 +01:00
RIOT/tests/rust_libs/Makefile
Marian Buschsieweke c140eedace
tests/rsut_libs: add missing dependency
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.
2024-03-27 17:18:06 +01:00

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