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

24 lines
532 B
Makefile

include ../Makefile.sys_common
# Set to 1 to disable the round-robin scheduling module
NORR ?= 0
ifneq (1,$(NORR))
USEMODULE += sched_round_robin
endif
# microbit qemu failing currently
TEST_ON_CI_BLACKLIST += microbit
include $(RIOTBASE)/Makefile.include
# Increase time between round-robin calls so prints are not interrupted for
# slow CPU's
ifneq (,$(filter ztimer_usec,$(USEMODULE)))
CFLAGS += -DSCHED_RR_TIMEOUT=100*1000
else
ifneq (,$(filter ztimer_msec,$(USEMODULE)))
CFLAGS += -DSCHED_RR_TIMEOUT=100
endif
endif