1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-12-29 16:31:18 +01:00

sys/trickle: if ztimer_xtimer_compat is used, use ztimer_msec

If already using the compat layer then just use ztimer_msec otherwise
the 64bit compat layer would be needed for this module
This commit is contained in:
Francisco Molina 2022-03-01 16:55:48 +01:00
parent fbe73b7c9a
commit fc169b98cd

View File

@ -167,6 +167,9 @@ ifneq (,$(filter trickle,$(USEMODULE)))
USEMODULE += random
ifeq (,$(filter ztimer_msec,$(USEMODULE)))
USEMODULE += xtimer
ifneq (,$(filter ztimer_xtimer_compat,$(USEMODULE)))
USEMODULE += ztimer_msec
endif
endif
endif