diff options
author | Daniel Campora <daniel@wipy.io> | 2015-03-26 20:41:50 +0100 |
---|---|---|
committer | Daniel Campora <daniel@wipy.io> | 2015-03-26 20:50:38 +0100 |
commit | 1826036a8363de825668185c3d5b4efd2820d353 (patch) | |
tree | d9083b910bcb2c835640d1b5979e0268814b05ad | |
parent | 51229afbded35a900215c83f482997a613efbbe7 (diff) | |
download | micropython-1826036a8363de825668185c3d5b4efd2820d353.tar.gz micropython-1826036a8363de825668185c3d5b4efd2820d353.zip |
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.
-rw-r--r-- | cc3200/application.lds | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cc3200/application.lds b/cc3200/application.lds index 5418471fb2..4ffcd03c35 100644 --- a/cc3200/application.lds +++ b/cc3200/application.lds @@ -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; |