-
Notifications
You must be signed in to change notification settings - Fork 68
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #435 from djtersteegc/master
Add 8MB flash board
- Loading branch information
Showing
3 changed files
with
72 additions
and
0 deletions.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
{ | ||
"build": { | ||
"arduino":{ | ||
"ldscript": "esp32_out.ld" | ||
}, | ||
"core": "esp32", | ||
"extra_flags": "-DARDUINO_ESP32_DEV", | ||
"f_cpu": "240000000L", | ||
"f_flash": "40000000L", | ||
"flash_mode": "dio", | ||
"mcu": "esp32", | ||
"variant": "esp32", | ||
"partitions": "fujinet_partitions_8MB.csv" | ||
}, | ||
"connectivity": [ | ||
"wifi", | ||
"bluetooth", | ||
"ethernet", | ||
"can" | ||
], | ||
"debug": { | ||
"default_tool": "ftdi", | ||
"onboard_tools": [ | ||
"ftdi" | ||
], | ||
"openocd_board": "esp-wrover.cfg" | ||
}, | ||
"frameworks": [ | ||
"arduino", | ||
"espidf" | ||
], | ||
"name": "#FujiNet v1 8MB", | ||
"upload": { | ||
"flash_size": "8MB", | ||
"maximum_ram_size": 327680, | ||
"maximum_size": 4194304, | ||
"protocols": [ | ||
"esptool", | ||
"espota", | ||
"ftdi" | ||
], | ||
"require_upload_port": true, | ||
"speed": 460800 | ||
}, | ||
"url": "https://github.com/FujiNetWIFI/atariwifi", | ||
"vendor": "FujiNet Project" | ||
} |
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,11 @@ | ||
# Name, Type, SubType, Offset, Size, Flags | ||
# | ||
#nvs 36,864 to 57,344 : size 20,480 | ||
#otdata 57,344 to 65,536 : size 8,192 | ||
#app0 65,536 to 6,291,456 : size 6,225,920 | ||
#spiffs 6,291,456 to 8,388,608 : size 2,097,152 | ||
# | ||
nvs, data, nvs, 0x9000, 0x5000, | ||
otadata, data, ota, 0xe000, 0x2000, | ||
app0, app, ota_0, 0x10000, 0x5F0000, | ||
spiffs, data, spiffs, 0x600000,0x200000, |
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