diff options
author | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2016-05-09 19:02:40 +0300 |
---|---|---|
committer | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2016-05-09 19:02:40 +0300 |
commit | de5e0ed2e080502cfcccdda541dbb44e0d51dfe2 (patch) | |
tree | c957d2a28d853825bd2ca446e346a15c0361c850 /esp8266 | |
parent | 65402ab1ec05fd552ceae63e2dcac69095ab1338 (diff) | |
download | micropython-de5e0ed2e080502cfcccdda541dbb44e0d51dfe2.tar.gz micropython-de5e0ed2e080502cfcccdda541dbb44e0d51dfe2.zip |
esp8266/main: Bump heap size to 28K.
This is kind of compensation for 4K FatFs buffer size which is eaten away
from it on FS mount. This should still leave enough of networking ("OS")
heap.
Diffstat (limited to 'esp8266')
-rw-r--r-- | esp8266/main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/esp8266/main.c b/esp8266/main.c index 45ee85ac88..21172edb31 100644 --- a/esp8266/main.c +++ b/esp8266/main.c @@ -38,7 +38,7 @@ #include "gccollect.h" #include "user_interface.h" -STATIC char heap[24 * 1024]; +STATIC char heap[28 * 1024]; STATIC void mp_reset(void) { mp_stack_set_top((void*)0x40000000); |