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.
pull/1171/head
Daniel Campora 2015-03-26 20:41:50 +01:00
rodzic 51229afbde
commit 1826036a83
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

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