1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-12-19 11:33:51 +01:00

16 lines
360 B
Makefile

include ../Makefile.sys_common
FORCE_ASSERTS = 1
USEMODULE += event
USEMODULE += xtimer
USEMODULE += core_thread_flags
# stm32f030f4-demo doesn't have enough RAM to run the test
# so we reduce the stack size for every thread
ifneq (,$(filter stm32f030f4-demo,$(BOARD)))
CFLAGS += -DTHREAD_STACKSIZE_DEFAULT=512
endif
include $(RIOTBASE)/Makefile.include