Increase heap size at the expense of stack size, from 16k to 16k+4k.

This commit is contained in:
Dan Halbert 2017-08-05 17:47:28 -04:00 committed by Scott Shawcroft
parent 13cb4aa89d
commit 91d4cdb476
1 changed files with 1 additions and 1 deletions

View File

@ -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();