From 346c0cc490fcb6fed6ea31b9294e11dbdacb2e08 Mon Sep 17 00:00:00 2001 From: Christian Mehlis Date: Fri, 18 Jul 2014 21:21:43 +0200 Subject: [PATCH] examples: changed stacksize to the recommended value --- examples/riot_and_cpp/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/riot_and_cpp/main.cpp b/examples/riot_and_cpp/main.cpp index be92d3e84..9fe06095b 100644 --- a/examples/riot_and_cpp/main.cpp +++ b/examples/riot_and_cpp/main.cpp @@ -37,7 +37,7 @@ extern "C" { using namespace std; /* thread's stack */ -char threadA_stack [KERNEL_CONF_STACKSIZE_PRINTF]; +char threadA_stack [KERNEL_CONF_STACKSIZE_MAIN]; /* thread's function */ void *threadA_func(void *arg);