Change stack size of main thread for RZ_A1H

We changed the stack size of main thread for RZ_A1H.
We changed "OS_MAINSTKSIZE" from 2048 to 4096.
Because stack shortage was found in the automatic test by the CI System .
pull/2019/head
tomoyuki yamanaka 2016-06-27 20:42:19 +09:00
parent 703aee4f61
commit e412f20e70
1 changed files with 1 additions and 1 deletions

View File

@ -74,7 +74,7 @@
// <i> Defines stack size for main thread. // <i> Defines stack size for main thread.
// <i> Default: 200 // <i> Default: 200
#ifndef OS_MAINSTKSIZE #ifndef OS_MAINSTKSIZE
#define OS_MAINSTKSIZE 2048 #define OS_MAINSTKSIZE 4096
#endif #endif
#ifndef __MBED_CMSIS_RTOS_CA9 #ifndef __MBED_CMSIS_RTOS_CA9