diff options
| author | Damien George | 2018-09-08 00:09:03 +1000 |
|---|---|---|
| committer | Damien George | 2018-09-08 00:09:03 +1000 |
| commit | 5cd2c7f2e744a04a5bdd33a76caaf30117c83e5c (patch) | |
| tree | b593f0073eb52b3401389d6a6b4423160578d4a0 | |
| parent | eed83caf1d4b4714989a5d47df91521c822707e6 (diff) | |
esp8266/main: Increase heap by 2kb, now that axtls rodata is in ROM.
| -rw-r--r-- | ports/esp8266/main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ports/esp8266/main.c b/ports/esp8266/main.c index 839d6f287..7bb2d8d57 100644 --- a/ports/esp8266/main.c +++ b/ports/esp8266/main.c @@ -43,7 +43,7 @@ #include "gccollect.h" #include "user_interface.h" -STATIC char heap[36 * 1024]; +STATIC char heap[38 * 1024]; STATIC void mp_reset(void) { mp_stack_set_top((void*)0x40000000); |
