-
-
Notifications
You must be signed in to change notification settings - Fork 219
Closed
Labels
Description
Per
| MEMORY | |
| { | |
| FLASH(rx) : ORIGIN = 0x10000000, LENGTH = 2048k | |
| RAM(rwx) : ORIGIN = 0x20000000, LENGTH = 256k | |
| SCRATCH_X(rwx) : ORIGIN = 0x20040000, LENGTH = 4k | |
| SCRATCH_Y(rwx) : ORIGIN = 0x20041000, LENGTH = 4k | |
| } |
this board has 2MByte flash. but if I look at Earle Philhower's core here
arduino_nano_connect.menu.flash.16777216_0=16MB (no FS)
arduino_nano_connect.menu.flash.16777216_0.upload.maximum_size=16773120
arduino_nano_connect.menu.flash.16777216_0.build.flash_length=16773120it has 16 MByte of flash. Same as the product page says.
Memory | AT25SF128A-MHB-T | 16MB Flash IC
Is the linker script just wrong or is there a technical limitation with the sketch size being limited to 2MB?