2014-02-21 14:43:55 +01:00
|
|
|
include ../Makefile.tests_common
|
|
|
|
|
2019-09-11 17:31:25 +02:00
|
|
|
BOARD_INSUFFICIENT_MEMORY := \
|
|
|
|
arduino-duemilanove \
|
|
|
|
arduino-nano \
|
|
|
|
arduino-uno \
|
|
|
|
nucleo-f031k6 \
|
|
|
|
hifive1 \
|
|
|
|
hifive1b \
|
|
|
|
i-nucleo-lrwan1 \
|
|
|
|
stm32l0538-disco \
|
|
|
|
#
|
2019-05-24 17:33:15 +02:00
|
|
|
|
2019-09-11 17:31:25 +02:00
|
|
|
# The test reboots on 'arduino-mega2560' because it mallocs too much memory.
|
|
|
|
# So I disabled all the other avr boards. Re-enable after success test.
|
|
|
|
BOARD_INSUFFICIENT_MEMORY += \
|
|
|
|
arduino-leonardo \
|
|
|
|
arduino-mega2560 \
|
|
|
|
jiminy-mega256rfr2 \
|
|
|
|
mega-xplained \
|
|
|
|
waspmote-pro \
|
|
|
|
#
|
2017-02-02 17:47:46 +01:00
|
|
|
|
2019-08-06 10:32:35 +02:00
|
|
|
# nucleo-f303k8 doesn't have enough RAM to run the test so we reduce the stack
|
|
|
|
# size for every thread
|
|
|
|
ifneq (,$(filter nucleo-f303k8,$(BOARD)))
|
|
|
|
CFLAGS += -DTHREAD_STACKSIZE_DEFAULT=512
|
|
|
|
endif
|
|
|
|
|
2018-11-09 15:04:45 +01:00
|
|
|
USEMODULE += posix_headers
|
2014-02-21 14:43:55 +01:00
|
|
|
USEMODULE += pthread
|
|
|
|
|
|
|
|
include $(RIOTBASE)/Makefile.include
|