#elif defined(ARDUINO_METRO_M4)
#define WORKSPACESIZE 20480-SDSIZE /* Objects (8*bytes) /
#define DATAFLASHSIZE 2048000 / 2 MBytes /
#define SYMBOLTABLESIZE 1024 / Bytes */
uint8_t _end;
…
#elif defined(ARDUINO_GRAND_CENTRAL_M4)
#define WORKSPACESIZE 30720-SDSIZE /* Objects (8*bytes) /
#define DATAFLASHSIZE 8192000 / 8 MBytes /
#define SYMBOLTABLESIZE 1024 / Bytes */
uint8_t _end;
Dear @johnsondavies , I notice you are having a different DATAFLASHSIZE - but you list on your main page both to be having capacity for saving 8192 objects; is, then, this DATAFLASHIZE difference correct?
Moreover, as a side note, I am having difficulty lately with (SAVE-IMAGE) on Grand Central… (Which may or may not be an issue with uLisp.) - Essentially, (LOAD-IMAGE) just let it freeze, and I think I had not entirely used up the 8192 objects capacity when saving. - In this regard, a question: do I need to adjust somehow DATAFLASHSIZE if I change SYMBOLTABLESIZE? You told me once of the relationship between SYMBOLTABLESIZE and WORKSPACESIZE of 8:1, but is DATAFLASHSIZE also affected?