From 9a401ffa46b9a7402b83844ff6168761f0a03dff Mon Sep 17 00:00:00 2001 From: David Johnson-Davies Date: Sun, 16 Sep 2018 15:58:00 +0100 Subject: [PATCH] Version 2.4a - 16th September 2018 Corrected sizes for Adafruit platforms. --- ulisp-arm.ino | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/ulisp-arm.ino b/ulisp-arm.ino index d1807a7..97117d8 100644 --- a/ulisp-arm.ino +++ b/ulisp-arm.ino @@ -1,5 +1,5 @@ -/* uLisp ARM Version 2.4 - www.ulisp.com - David Johnson-Davies - www.technoblogy.com - 15th September 2018 +/* uLisp ARM Version 2.4a - www.ulisp.com + David Johnson-Davies - www.technoblogy.com - 16th September 2018 Licensed under the MIT license: https://opensource.org/licenses/MIT */ @@ -136,19 +136,19 @@ typedef void (*pfun_t)(char); uint8_t _end; #elif defined(ARDUINO_METRO_M4) - #define WORKSPACESIZE 3072-SDSIZE /* Cells (8*bytes) */ + #define WORKSPACESIZE 20480-SDSIZE /* Cells (8*bytes) */ #define FLASHSIZE 65536 /* Bytes */ #define SYMBOLTABLESIZE 1024 /* Bytes */ uint8_t _end; #elif defined(ARDUINO_ITSYBITSY_M4) - #define WORKSPACESIZE 3072-SDSIZE /* Cells (8*bytes) */ + #define WORKSPACESIZE 20480-SDSIZE /* Cells (8*bytes) */ #define FLASHSIZE 65536 /* Bytes */ #define SYMBOLTABLESIZE 1024 /* Bytes */ uint8_t _end; #elif defined(ARDUINO_FEATHER_M4) - #define WORKSPACESIZE 3072-SDSIZE /* Cells (8*bytes) */ + #define WORKSPACESIZE 20480-SDSIZE /* Cells (8*bytes) */ #define FLASHSIZE 65536 /* Bytes */ #define SYMBOLTABLESIZE 1024 /* Bytes */ uint8_t _end;