mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
15 lines
310 B
Makefile
15 lines
310 B
Makefile
|
include ../Makefile.tests_common
|
||
|
|
||
|
TEST_ZTIMER_CLOCK ?= ZTIMER_USEC
|
||
|
|
||
|
USEMODULE += ztimer
|
||
|
USEMODULE += ztimer_usec
|
||
|
ifeq ($(TEST_ZTIMER_CLOCK), ZTIMER_MSEC)
|
||
|
USEMODULE += ztimer_msec
|
||
|
USEMODULE += ztimer_periph_rtt
|
||
|
endif
|
||
|
|
||
|
CFLAGS += -DTEST_ZTIMER_CLOCK=$(TEST_ZTIMER_CLOCK)
|
||
|
|
||
|
include $(RIOTBASE)/Makefile.include
|