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

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.
This commit is contained in:
Marian Buschsieweke 2024-03-27 17:16:01 +01:00
parent d13faeb1cc
commit c140eedace
No known key found for this signature in database
GPG Key ID: 77AA882EC78084E6

View File

@ -2,6 +2,7 @@ include ../Makefile.tests_common
USEMODULE += shell
USEMODULE += shell_democommands
USEMODULE += ztimer_msec
FEATURES_REQUIRED += rust_target