1
0
mirror of https://github.com/esp8266/Arduino.git synced 2025-06-12 01:53:07 +03:00

Add 512k (no SPIFFS) build option (#862)

This commit is contained in:
Ivan Grokhotkov
2015-10-25 21:11:10 +03:00
parent e3518a5722
commit f328e66fd7
4 changed files with 41 additions and 9 deletions

View File

@ -0,0 +1,18 @@
/* Flash Split for 512K chips, no SPIFFS */
/* sketch 487KB */
/* 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 = 0x40201010, len = 0x79ff0
}
PROVIDE ( _SPIFFS_start = 0 );
PROVIDE ( _SPIFFS_end = 0 );
PROVIDE ( _SPIFFS_page = 0 );
PROVIDE ( _SPIFFS_block = 0 );
INCLUDE "../ld/eagle.app.v6.common.ld"