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

tests/pbkdf2: increase stack for AVR

This commit is contained in:
Francisco Molina 2022-03-22 14:07:43 +01:00
parent 35e778901d
commit 7d10831254

View File

@ -9,3 +9,8 @@ USEMODULE += base64
RIOT_TERMINAL ?= socat
include $(RIOTBASE)/Makefile.include
# Increase Stack size for AVR
ifneq (,$(filter avr8_common,$(USEMODULE)))
CFLAGS += -DTHREAD_STACKSIZE_MAIN=THREAD_STACKSIZE_LARGE
endif