2017-12-21 13:23:23 +01:00
|
|
|
include ../Makefile.tests_common
|
2017-07-17 13:20:15 +02:00
|
|
|
|
2021-10-22 17:43:08 +02:00
|
|
|
USEMODULE += fmt
|
|
|
|
USEMODULE += core_mutex_priority_inheritance
|
2018-08-17 11:51:41 +02:00
|
|
|
|
2021-10-22 17:43:08 +02:00
|
|
|
ifneq ($(RIOT_CI_BUILD),1)
|
|
|
|
# For human beings add a busy delay to the mid priority task to make the problem more approachable
|
|
|
|
FANCY ?= 1
|
|
|
|
else
|
|
|
|
# Skip the fancy delay for the CI to not waste precious CI time
|
|
|
|
FANCY ?= 0
|
|
|
|
endif
|
2017-07-17 13:20:15 +02:00
|
|
|
|
|
|
|
include $(RIOTBASE)/Makefile.include
|
2021-10-22 17:43:08 +02:00
|
|
|
|
|
|
|
CFLAGS += -DFANCY=$(FANCY)
|
|
|
|
CFLAGS += -DTHREAD_STACKSIZE_MAIN=THREAD_STACKSIZE_SMALL
|