forked from nanoframework/nf-interpreter
-
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.
Add partition table for 32MB ESP32_S3 targets (nanoframework#2956)
- Loading branch information
1 parent
d885548
commit 5cdd337
Showing
5 changed files
with
39 additions
and
6 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 |
---|---|---|
|
@@ -136,7 +136,8 @@ | |
"2mb", | ||
"4mb", | ||
"8mb", | ||
"16mb" | ||
"16mb", | ||
"32mb" | ||
] | ||
}, | ||
{ | ||
|
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 |
---|---|---|
@@ -0,0 +1,18 @@ | ||
################################################ | ||
# ESP-IDF Partition Table for .NET nanoFramework | ||
# Name, Type, SubType, Offset, Size, | ||
############################################################################################################################### | ||
# if you change the partitions here, make sure to update the BlockRegions array in the device BlockStorage configuration file # | ||
############################################################################################################################### | ||
nvs, data, nvs, 0x9000, 0x6000, | ||
phy_init, data, phy, 0xf000, 0x1000, | ||
# Factory area for NanoCLR - 1664k | ||
factory, app, factory, 0x10000, 0x1A0000, | ||
# Deployment area for Managed code 2944k | ||
deploy, data, 0x84, 0x1B0000, 0x2E0000, | ||
# Config data for Network, Wireless, certificates, user data 8MB | ||
config, data, spiffs, 0x490000, 0x800000, | ||
########################################## | ||
# spare from 0xC90000 (19Mb free) # | ||
# total size has to be 0x2000000 or less # | ||
########################################## |
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