From eb9d2fb5b4bfb8e3cbf8b39db83b69a452ed697f Mon Sep 17 00:00:00 2001 From: Francisco Molina Date: Tue, 19 Jan 2021 13:57:37 +0100 Subject: [PATCH] tests/cpp11_condition_variable: nucleo-f334r8 reduce thread size --- tests/cpp11_condition_variable/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/cpp11_condition_variable/Makefile b/tests/cpp11_condition_variable/Makefile index 3da961b857..4414051886 100644 --- a/tests/cpp11_condition_variable/Makefile +++ b/tests/cpp11_condition_variable/Makefile @@ -6,7 +6,7 @@ CXXEXFLAGS += -std=c++11 # 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))) +ifneq (,$(filter nucleo-f303k8 nucleo-f334r8,$(BOARD))) CFLAGS += -DTHREAD_STACKSIZE_DEFAULT=512 endif