summaryrefslogtreecommitdiffstatshomepage
path: root/esp8266
diff options
context:
space:
mode:
authorPaul Sokolovsky <pfalcon@users.sourceforge.net>2016-05-09 19:02:40 +0300
committerPaul Sokolovsky <pfalcon@users.sourceforge.net>2016-05-09 19:02:40 +0300
commitde5e0ed2e080502cfcccdda541dbb44e0d51dfe2 (patch)
treec957d2a28d853825bd2ca446e346a15c0361c850 /esp8266
parent65402ab1ec05fd552ceae63e2dcac69095ab1338 (diff)
downloadmicropython-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.c2
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);