diff options
| author | Dan Halbert <halbert@halwitz.org> | 2017-08-05 17:47:28 -0400 |
|---|---|---|
| committer | Scott Shawcroft <scott@tannewt.org> | 2017-08-05 17:47:00 -0700 |
| commit | 91d4cdb476c15df853f42e6b4bd3d117a42d2058 (patch) | |
| tree | bbf28afde173e30edf13c754d8b6e3dc813d36f2 | |
| parent | 13cb4aa89db351b20fe996db2f80056b4ce630c0 (diff) | |
Increase heap size at the expense of stack size, from 16k to 16k+4k.
| -rw-r--r-- | atmel-samd/main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/atmel-samd/main.c b/atmel-samd/main.c index d84c44f86..b3cfa69fd 100644 --- a/atmel-samd/main.c +++ b/atmel-samd/main.c @@ -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(); |
