1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-12-25 14:33:52 +01:00

boards/stk3200: Move THREAD_STACKSIZE_DEFAULT to .include

This commit is contained in:
MrKevinWeiss 2022-01-10 10:25:33 +01:00
parent 7bebbc5545
commit 49a4e20f67
No known key found for this signature in database
GPG Key ID: 3514539D7808D123
2 changed files with 3 additions and 3 deletions

View File

@ -3,9 +3,6 @@ ifneq (,$(filter saul_default,$(USEMODULE)))
USEMODULE += saul_gpio
endif
# limit the stack size so most tests and examples compile
CFLAGS += -DTHREAD_STACKSIZE_DEFAULT=512
# add board common drivers
USEMODULE += boards_common_silabs
USEMODULE += silabs_bc

View File

@ -1,5 +1,8 @@
# setup JLink for flashing
JLINK_PRE_FLASH = r
# limit the stack size so most tests and examples compile
CFLAGS += -DTHREAD_STACKSIZE_DEFAULT=512
# include board common
include $(RIOTBOARD)/common/silabs/Makefile.include