Increase heap size at the expense of stack size, from 16k to 16k+4k.
This commit is contained in:
parent
13cb4aa89d
commit
91d4cdb476
|
@ -117,7 +117,7 @@ void init_flash_fs(void) {
|
|||
MP_STATE_PORT(vfs_cur) = vfs;
|
||||
}
|
||||
|
||||
static char heap[16384];
|
||||
static char heap[16384 + 4096];
|
||||
|
||||
void reset_mp(void) {
|
||||
reset_status_led();
|
||||
|
|
Loading…
Reference in New Issue