mirror of
https://github.com/esp8266/Arduino.git
synced 2025-12-10 20:02:26 +03:00
18 lines
503 B
Plaintext
18 lines
503 B
Plaintext
/* Flash Split for 4M chips */
|
|
/* irom0 960KB */
|
|
/* spiffs 3052KB */
|
|
/* eeprom 20KB */
|
|
|
|
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 = 0x40210000, len = 0xF0000
|
|
}
|
|
|
|
PROVIDE ( _SPIFFS_start = 0x40300000 );
|
|
PROVIDE ( _SPIFFS_end = 0x405FB000 );
|
|
|
|
INCLUDE "../ld/eagle.app.v6.common.ld"
|