From 18a10d4b774cfcfca39eb495059fc9b67b2ea9a1 Mon Sep 17 00:00:00 2001 From: David Johnson-Davies Date: Sun, 16 Sep 2018 16:21:50 +0100 Subject: [PATCH] Version 2.4a - 16th September 2018 Corrected WORKSPACESIZE values. --- ulisp-arm.ino | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ulisp-arm.ino b/ulisp-arm.ino index 97117d8..33255a6 100644 --- a/ulisp-arm.ino +++ b/ulisp-arm.ino @@ -125,7 +125,7 @@ typedef void (*pfun_t)(char); uint8_t _end; #elif defined(ARDUINO_SAM_DUE) - #define WORKSPACESIZE 3072-SDSIZE /* Cells (8*bytes) */ + #define WORKSPACESIZE 10240-SDSIZE /* Cells (8*bytes) */ #define SYMBOLTABLESIZE 512 /* Bytes */ #define SDCARD_SS_PIN 10 extern uint8_t _end;