From d74f7425a5114c76cfb9a7ec50e0bae2cb86b0ce Mon Sep 17 00:00:00 2001 From: Ludwig Ortmann Date: Sat, 20 Dec 2014 17:00:11 +0100 Subject: [PATCH] cpu/samd21: increase default stack size Provide enough space to run `examples/default`. --- cpu/samd21/include/cpu-conf.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cpu/samd21/include/cpu-conf.h b/cpu/samd21/include/cpu-conf.h index bbd7eefbd0..6868d7c470 100644 --- a/cpu/samd21/include/cpu-conf.h +++ b/cpu/samd21/include/cpu-conf.h @@ -33,7 +33,7 @@ extern "C" { #define KERNEL_CONF_STACKSIZE_PRINTF (512) #ifndef KERNEL_CONF_STACKSIZE_DEFAULT -#define KERNEL_CONF_STACKSIZE_DEFAULT (512) +#define KERNEL_CONF_STACKSIZE_DEFAULT (1024) #endif #define KERNEL_CONF_STACKSIZE_IDLE (256)