From 789f10e816d12c4289fd5952fffb592c8cc97e6e Mon Sep 17 00:00:00 2001 From: Kaspar Schleiser Date: Thu, 30 Jul 2020 11:20:59 +0200 Subject: [PATCH] cpu/msp430_common: increase THREAD_STACKSIZE_DEFAULT to 384 Both tests/pthread_tls and tests/prng_sha256prng fail without this, but other platforms run fine with their defaults. Lets consider the higher value a better default. --- cpu/msp430_common/include/cpu_conf.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cpu/msp430_common/include/cpu_conf.h b/cpu/msp430_common/include/cpu_conf.h index 297427751a..b58fa5af74 100644 --- a/cpu/msp430_common/include/cpu_conf.h +++ b/cpu/msp430_common/include/cpu_conf.h @@ -68,7 +68,7 @@ extern "C" { #endif #ifndef THREAD_STACKSIZE_DEFAULT -# define THREAD_STACKSIZE_DEFAULT (256) +# define THREAD_STACKSIZE_DEFAULT (384) #endif #ifndef THREAD_STACKSIZE_IDLE