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

Merge pull request #1450 from mehlis/ccp-stacksize-fix

examples: changed stacksize to the recommended value
This commit is contained in:
Oleg Hahm 2014-07-19 15:04:38 +02:00
commit 54fd920da0

View File

@ -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);