From e2cb29f2a0ca07c8b8b089675969e11d62cd13ac Mon Sep 17 00:00:00 2001 From: Kamil Tomaszewski Date: Fri, 18 Oct 2019 11:12:47 +0200 Subject: [PATCH] Change default stack size to 64kiB for Spresense --- ports/cxd56/mpconfigport.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ports/cxd56/mpconfigport.h b/ports/cxd56/mpconfigport.h index 233b7b9a7b..91ebfd98f6 100644 --- a/ports/cxd56/mpconfigport.h +++ b/ports/cxd56/mpconfigport.h @@ -27,8 +27,8 @@ #ifndef __INCLUDED_MPCONFIGPORT_H #define __INCLUDED_MPCONFIGPORT_H -// 24kiB stack -#define CIRCUITPY_DEFAULT_STACK_SIZE 0x6000 +// 64kiB stack +#define CIRCUITPY_DEFAULT_STACK_SIZE 0x10000 #include "py/circuitpy_mpconfig.h"