tests/cpp11_condition_variable: nucleo-f334r8 reduce thread size

This commit is contained in:
Francisco Molina 2021-01-19 13:57:37 +01:00
parent 64779b6f98
commit eb9d2fb5b4
No known key found for this signature in database
GPG Key ID: 3E94EAC3DBDEEDA8

View File

@ -6,7 +6,7 @@ CXXEXFLAGS += -std=c++11
# nucleo-f303k8 doesn't have enough RAM to run the test so we reduce the stack # nucleo-f303k8 doesn't have enough RAM to run the test so we reduce the stack
# size for every thread # size for every thread
ifneq (,$(filter nucleo-f303k8,$(BOARD))) ifneq (,$(filter nucleo-f303k8 nucleo-f334r8,$(BOARD)))
CFLAGS += -DTHREAD_STACKSIZE_DEFAULT=512 CFLAGS += -DTHREAD_STACKSIZE_DEFAULT=512
endif endif