From c140eedace2c7f5bb934c61a905687c79f2cd8ec Mon Sep 17 00:00:00 2001 From: Marian Buschsieweke Date: Wed, 27 Mar 2024 17:16:01 +0100 Subject: [PATCH] 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. --- tests/rust_libs/Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/rust_libs/Makefile b/tests/rust_libs/Makefile index a41e323007..9e587f31a5 100644 --- a/tests/rust_libs/Makefile +++ b/tests/rust_libs/Makefile @@ -2,6 +2,7 @@ include ../Makefile.tests_common USEMODULE += shell USEMODULE += shell_democommands +USEMODULE += ztimer_msec FEATURES_REQUIRED += rust_target