mirror of
https://github.com/esp8266/Arduino.git
synced 2025-07-27 18:02:17 +03:00
boards generator: updates (#5103)
boards generator updates: * simplified mapping description: only flash and spiffs sizes are needed * some ldscripts are renamed due to autogenerated names * +2M/0, +2M/512K spiffs, +4M0 * reduce length of hidden strings in boards.txt (#5100, https://github.com/arduino/arduino-builder/issues/284) * give more details in ldscripts (address, size, +rf-cal, +sdk-wifi-settings)
This commit is contained in:
22
tools/sdk/ld/eagle.flash.4m3m.ld
Normal file
22
tools/sdk/ld/eagle.flash.4m3m.ld
Normal file
@ -0,0 +1,22 @@
|
||||
/* Flash Split for 4M chips */
|
||||
/* sketch @0x40200000 (~1019KB) (1044464B) */
|
||||
/* empty @0x402FEFF0 (~4KB) (4112B) */
|
||||
/* spiffs @0x40300000 (~3052KB) (3125248B) */
|
||||
/* eeprom @0x405FB000 (=4KB) */
|
||||
/* rfcal @0x405FC000 (=4KB) */
|
||||
/* wifi @0x405FD000 (=12KB) */
|
||||
|
||||
MEMORY
|
||||
{
|
||||
dport0_0_seg : org = 0x3FF00000, len = 0x10
|
||||
dram0_0_seg : org = 0x3FFE8000, len = 0x14000
|
||||
iram1_0_seg : org = 0x40100000, len = 0x8000
|
||||
irom0_0_seg : org = 0x40201010, len = 0xfeff0
|
||||
}
|
||||
|
||||
PROVIDE ( _SPIFFS_start = 0x40300000 );
|
||||
PROVIDE ( _SPIFFS_end = 0x405FB000 );
|
||||
PROVIDE ( _SPIFFS_page = 0x100 );
|
||||
PROVIDE ( _SPIFFS_block = 0x2000 );
|
||||
|
||||
INCLUDE "eagle.app.v6.common.ld"
|
Reference in New Issue
Block a user