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

examples: changed stacksize to the recommended value

This commit is contained in:
Christian Mehlis 2014-07-18 21:21:43 +02:00
parent eac161c7d1
commit 346c0cc490

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