Version 2.4a - 16th September 2018

Corrected sizes for Adafruit platforms.
This commit is contained in:
David Johnson-Davies 2018-09-16 15:58:00 +01:00 committed by GitHub
parent fe875b12ba
commit 9a401ffa46
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 5 deletions

View File

@ -1,5 +1,5 @@
/* uLisp ARM Version 2.4 - www.ulisp.com /* uLisp ARM Version 2.4a - www.ulisp.com
David Johnson-Davies - www.technoblogy.com - 15th September 2018 David Johnson-Davies - www.technoblogy.com - 16th September 2018
Licensed under the MIT license: https://opensource.org/licenses/MIT Licensed under the MIT license: https://opensource.org/licenses/MIT
*/ */
@ -136,19 +136,19 @@ typedef void (*pfun_t)(char);
uint8_t _end; uint8_t _end;
#elif defined(ARDUINO_METRO_M4) #elif defined(ARDUINO_METRO_M4)
#define WORKSPACESIZE 3072-SDSIZE /* Cells (8*bytes) */ #define WORKSPACESIZE 20480-SDSIZE /* Cells (8*bytes) */
#define FLASHSIZE 65536 /* Bytes */ #define FLASHSIZE 65536 /* Bytes */
#define SYMBOLTABLESIZE 1024 /* Bytes */ #define SYMBOLTABLESIZE 1024 /* Bytes */
uint8_t _end; uint8_t _end;
#elif defined(ARDUINO_ITSYBITSY_M4) #elif defined(ARDUINO_ITSYBITSY_M4)
#define WORKSPACESIZE 3072-SDSIZE /* Cells (8*bytes) */ #define WORKSPACESIZE 20480-SDSIZE /* Cells (8*bytes) */
#define FLASHSIZE 65536 /* Bytes */ #define FLASHSIZE 65536 /* Bytes */
#define SYMBOLTABLESIZE 1024 /* Bytes */ #define SYMBOLTABLESIZE 1024 /* Bytes */
uint8_t _end; uint8_t _end;
#elif defined(ARDUINO_FEATHER_M4) #elif defined(ARDUINO_FEATHER_M4)
#define WORKSPACESIZE 3072-SDSIZE /* Cells (8*bytes) */ #define WORKSPACESIZE 20480-SDSIZE /* Cells (8*bytes) */
#define FLASHSIZE 65536 /* Bytes */ #define FLASHSIZE 65536 /* Bytes */
#define SYMBOLTABLESIZE 1024 /* Bytes */ #define SYMBOLTABLESIZE 1024 /* Bytes */
uint8_t _end; uint8_t _end;