From 482686718857618d9b585bf2585ddae9f58faa8c Mon Sep 17 00:00:00 2001 From: Francisco Molina Date: Mon, 3 May 2021 10:17:11 +0200 Subject: [PATCH] tests/pthread_cooperation: nucleo-f334r8: reduce stack size --- tests/pthread_cooperation/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/pthread_cooperation/Makefile b/tests/pthread_cooperation/Makefile index 184da9ce8c..a9a67f8f13 100644 --- a/tests/pthread_cooperation/Makefile +++ b/tests/pthread_cooperation/Makefile @@ -2,7 +2,7 @@ include ../Makefile.tests_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,$(BOARD))) +ifneq (,$(filter nucleo-f303k8 nucleo-f334r8,$(BOARD))) CFLAGS += -DTHREAD_STACKSIZE_DEFAULT=512 endif