mirror of
https://github.com/esp8266/Arduino.git
synced 2025-06-12 01:53:07 +03:00
Added 2M generic boards (#5404)
* added generic boards 2M (SPIFFS 128K) 2M (SPIFFS 256K)
This commit is contained in:
committed by
Earle F. Philhower, III
parent
00bc89eb48
commit
4b16fa0a33
22
tools/sdk/ld/eagle.flash.2m128.ld
Normal file
22
tools/sdk/ld/eagle.flash.2m128.ld
Normal file
@ -0,0 +1,22 @@
|
||||
/* Flash Split for 2M chips */
|
||||
/* sketch @0x40200000 (~1019KB) (1044464B) */
|
||||
/* empty @0x402FEFF0 (~900KB) (921616B) */
|
||||
/* spiffs @0x403E0000 (~108KB) (110592B) */
|
||||
/* eeprom @0x403FB000 (4KB) */
|
||||
/* rfcal @0x403FC000 (4KB) */
|
||||
/* wifi @0x403FD000 (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 = 0x403E0000 );
|
||||
PROVIDE ( _SPIFFS_end = 0x403FB000 );
|
||||
PROVIDE ( _SPIFFS_page = 0x100 );
|
||||
PROVIDE ( _SPIFFS_block = 0x1000 );
|
||||
|
||||
INCLUDE "local.eagle.app.v6.common.ld"
|
22
tools/sdk/ld/eagle.flash.2m256.ld
Normal file
22
tools/sdk/ld/eagle.flash.2m256.ld
Normal file
@ -0,0 +1,22 @@
|
||||
/* Flash Split for 2M chips */
|
||||
/* sketch @0x40200000 (~1019KB) (1044464B) */
|
||||
/* empty @0x402FEFF0 (~772KB) (790544B) */
|
||||
/* spiffs @0x403C0000 (~236KB) (241664B) */
|
||||
/* eeprom @0x403FB000 (4KB) */
|
||||
/* rfcal @0x403FC000 (4KB) */
|
||||
/* wifi @0x403FD000 (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 = 0x403C0000 );
|
||||
PROVIDE ( _SPIFFS_end = 0x403FB000 );
|
||||
PROVIDE ( _SPIFFS_page = 0x100 );
|
||||
PROVIDE ( _SPIFFS_block = 0x1000 );
|
||||
|
||||
INCLUDE "local.eagle.app.v6.common.ld"
|
Reference in New Issue
Block a user