Merge pull request #3362 from c1728p9/cortex_a_stack_bump

Increase stack size in malloc test for Cortex-A
pull/3415/head
Martin Kojtal 2016-12-09 15:34:31 +01:00 committed by GitHub
commit 0e2d1cb671
1 changed files with 4 additions and 0 deletions

View File

@ -7,7 +7,11 @@
#endif
#define NUM_THREADS 5
#if defined(__CORTEX_A9)
#define THREAD_STACK_SIZE DEFAULT_STACK_SIZE
#else
#define THREAD_STACK_SIZE 256
#endif
DigitalOut led1(LED1);
volatile bool should_exit = false;