mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
1ab0b77543
This reverts commit 2210721d5c
.
18 lines
451 B
Makefile
18 lines
451 B
Makefile
include ../Makefile.tests_common
|
|
|
|
USEMODULE += fmt
|
|
USEMODULE += core_mutex_priority_inheritance
|
|
|
|
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
|
|
|
|
include $(RIOTBASE)/Makefile.include
|
|
|
|
CFLAGS += -DFANCY=$(FANCY)
|
|
CFLAGS += -DTHREAD_STACKSIZE_MAIN=THREAD_STACKSIZE_SMALL
|