forked from esp8266/Arduino
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adds SparkFun Blynk Board (esp8266#6713)
* adds initial commit to boards.txt before actual edits * reminder to remove vim .swp file * Removes spaces and modifies outdated tags for menu `CpuFrequency -> xtal` for example * Adds SparkFun Bynk Board to boards.txt.py, moves .build flags all together for SparkFun Blynk * runs boards.txt.py to generate files for pull request - all files have been included as instructed at top of boards.txt file * Deletes three .orig files generated by boards.txt.py: rst, txt, and json * Moves boards.txt.py back to /tools directory and attempts to change its mode. * restore 'x' flag
- Loading branch information
Showing
5 changed files
with
241 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -352,4 +352,4 @@ | |
] | ||
} | ||
] | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
/* Flash Split for 2M chips */ | ||
/* sketch @0x40200000 (~1019KB) (1044464B) */ | ||
/* empty @0x402FEFF0 (~964KB) (987152B) */ | ||
/* spiffs @0x403F0000 (~44KB) (45056B) */ | ||
/* 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 ( _FS_start = 0x403F0000 ); | ||
PROVIDE ( _FS_end = 0x403FB000 ); | ||
PROVIDE ( _FS_page = 0x100 ); | ||
PROVIDE ( _FS_block = 0x1000 ); | ||
PROVIDE ( _EEPROM_start = 0x403fb000 ); | ||
/* The following symbols are DEPRECATED and will be REMOVED in a future release */ | ||
PROVIDE ( _SPIFFS_start = 0x403F0000 ); | ||
PROVIDE ( _SPIFFS_end = 0x403FB000 ); | ||
PROVIDE ( _SPIFFS_page = 0x100 ); | ||
PROVIDE ( _SPIFFS_block = 0x1000 ); | ||
|
||
INCLUDE "local.eagle.app.v6.common.ld" |