Skip to content

Commit de5e0ed

Browse files
committed
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.
1 parent 65402ab commit de5e0ed

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

esp8266/main.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
#include "gccollect.h"
3939
#include "user_interface.h"
4040

41-
STATIC char heap[24 * 1024];
41+
STATIC char heap[28 * 1024];
4242

4343
STATIC void mp_reset(void) {
4444
mp_stack_set_top((void*)0x40000000);

0 commit comments

Comments
 (0)