-
Notifications
You must be signed in to change notification settings - Fork 13.3k
boards generator: updates #5103
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from 1 commit
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
9bc9e90
boards generator: updates:
d-a-v bed6589
trying to reduce hidden strings's length in boards.txt (#5100)
d-a-v 89ed23b
update device test framework
d-a-v 36da1cc
+ build.py update + details (rf-cal and sdk-wifi-settings)
d-a-v 3ab0335
update ld comments
d-a-v File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next
Next commit
boards generator: updates:
* simplified mapping description: only flash and spiffs sizes * flash description - almost no more magic len or addresses * some ldscripts are renamed due to autogenerated names * + 2M / no spiffs * + 2M / 512K spiffs
- Loading branch information
commit 9bc9e90d02161aace451176ee66a8388241886f9
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains hidden or 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 hidden or 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,20 @@ | ||
/* Flash Split for 16M chips */ | ||
/* sketch 1019KB */ | ||
/* empty 1024KB */ | ||
/* spiffs 14336KB */ | ||
/* eeprom 4KB rfcal 16KB */ | ||
|
||
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 = 0x40400000 ); | ||
PROVIDE ( _SPIFFS_end = 0x411FB000 ); | ||
PROVIDE ( _SPIFFS_page = 0x100 ); | ||
PROVIDE ( _SPIFFS_block = 0x2000 ); | ||
|
||
INCLUDE "eagle.app.v6.common.ld" |
4 changes: 2 additions & 2 deletions
4
tools/sdk/ld/eagle.flash.16m.ld → tools/sdk/ld/eagle.flash.16m15m.ld
This file contains hidden or 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 hidden or 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 hidden or bidirectional Uni
10000
code 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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,19 @@ | ||
/* Flash Split for 2M chips */ | ||
/* sketch 1019KB */ | ||
/* spiffs 1024KB */ | ||
/* eeprom 4KB rfcal 16KB */ | ||
|
||
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 = 0x403FB000 ); | ||
PROVIDE ( _SPIFFS_page = 0x100 ); | ||
PROVIDE ( _SPIFFS_block = 0x2000 ); | ||
|
||
INCLUDE "eagle.app.v6.common.ld" |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
rfcal (4kB) + sdk (wifi) settings (12kB)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks!