mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
21 lines
612 B
Makefile
21 lines
612 B
Makefile
include ../Makefile.sys_common
|
|
|
|
# nucleo-f303k8 doesn't have enough RAM to run the test so we reduce the stack
|
|
# size for every thread
|
|
ifneq (,$(filter nucleo-f303k8 nucleo-f334r8,$(BOARD)))
|
|
CFLAGS += -DTHREAD_STACKSIZE_DEFAULT=512
|
|
endif
|
|
|
|
# The test compiles, but these boards have too little RAM for
|
|
# dynamic allocation of thread stacks
|
|
BOARD_BLACKLIST := arduino-nano arduino-duemilanove \
|
|
arduino-uno nucleo-f031k6 stm32f030f4-demo
|
|
|
|
USEMODULE += posix_headers
|
|
USEMODULE += pthread
|
|
|
|
# microbit qemu failing currently
|
|
TEST_ON_CI_BLACKLIST += microbit
|
|
|
|
include $(RIOTBASE)/Makefile.include
|