cc3200: Increase main stack size to 2K.

Increasing it from 1K to 2K gives more freedom to the callback
handlers, before this, simply nesting a function call into a
printf would cause a stack overflow.
stackless
Daniel Campora 2015-03-26 20:41:50 +01:00
parent 51229afbde
commit 1826036a83
1 changed files with 1 additions and 1 deletions

View File

@ -24,7 +24,7 @@
* THE SOFTWARE.
*/
__stack_size__ = 1K; /* interrupts are handled within this stack */
__stack_size__ = 2K; /* interrupts are handled within this stack */
__min_heap_size__ = 8K;
__rtos_heap_size = 16K;