1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

tests/pthread_cooperation: nucleo-f334r8: reduce stack size

This commit is contained in:
Francisco Molina 2021-05-03 10:17:11 +02:00
parent d8287eeffc
commit 4826867188
No known key found for this signature in database
GPG Key ID: 3E94EAC3DBDEEDA8

View File

@ -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