summaryrefslogtreecommitdiff
path: root/atmel-samd
diff options
context:
space:
mode:
authorDan Halbert <halbert@halwitz.org>2017-08-05 17:47:28 -0400
committerScott Shawcroft <scott@tannewt.org>2017-08-05 17:47:00 -0700
commit91d4cdb476c15df853f42e6b4bd3d117a42d2058 (patch)
treebbf28afde173e30edf13c754d8b6e3dc813d36f2 /atmel-samd
parent13cb4aa89db351b20fe996db2f80056b4ce630c0 (diff)
Increase heap size at the expense of stack size, from 16k to 16k+4k.
Diffstat (limited to 'atmel-samd')
-rw-r--r--atmel-samd/main.c2
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();