From 91d4cdb476c15df853f42e6b4bd3d117a42d2058 Mon Sep 17 00:00:00 2001 From: Dan Halbert Date: Sat, 5 Aug 2017 17:47:28 -0400 Subject: Increase heap size at the expense of stack size, from 16k to 16k+4k. --- atmel-samd/main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'atmel-samd') 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(); -- cgit v1.2.3