diff options
author | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2016-03-29 21:14:41 +0300 |
---|---|---|
committer | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2016-03-29 21:14:41 +0300 |
commit | d88250c06eb9f2f56b790c1411718134a148d9f4 (patch) | |
tree | 3dc5e8880e9f4a9dc60ed7ac33f3e05384448aa9 /esp8266/main.c | |
parent | c4506ed869ff255993c8cae3ca847689c8c42236 (diff) | |
download | micropython-d88250c06eb9f2f56b790c1411718134a148d9f4.tar.gz micropython-d88250c06eb9f2f56b790c1411718134a148d9f4.zip |
esp8266: Reduce heap size for now to avoid random segfaults on WiFi connect.
Diffstat (limited to 'esp8266/main.c')
-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 908a2c61a6..4fc7757c81 100644 --- a/esp8266/main.c +++ b/esp8266/main.c @@ -38,7 +38,7 @@ #include "gccollect.h" #include "user_interface.h" -STATIC char heap[16384]; +STATIC char heap[15360]; STATIC void mp_reset(void) { mp_stack_set_top((void*)0x40000000); |