Skip to content
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

Fix ESP32 Partition table #1855

Merged
merged 1 commit into from
Mar 11, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@ nvs, data, nvs, 0x9000, 0x6000,
phy_init, data, phy, 0xf000, 0x1000,
# Factory area for NanoCLR - 1536k
factory, 0, 0, 0x10000, 0x180000,
# Deployment area for Managed code 1769k
deploy, data, 0x84, 0x190000, 0xC70000,
# Config data for Network, Wireless, certificates, user data 2MB
config, data, spiffs, 0xE00000, 0x200000,
##################################
# total size has to be 0x1000000 #
##################################
# Deployment area for Managed code 3072K, Mapping issues with deployment areas over 3.5Mb, see issue #691
deploy, data, 0x84, 0x190000, 0x300000,
# Config data for Network, Wireless, certificates, user data 3MB
config, data, spiffs, 0x490000, 0x300000,
##########################################
# total size has to be 0x1000000 or less #
##########################################
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@ nvs, data, nvs, 0x9000, 0x6000,
phy_init, data, phy, 0xf000, 0x1000,
# Factory area for NanoCLR - 1536k
factory, 0, 0, 0x10000, 0x180000,
# Deployment area for Managed code 5568k
deploy, data, 0x84, 0x190000, 0x570000,
# Config data for Network, Wireless, certificates, user data 1Mb
config, data, spiffs, 0x700000, 0x100000,
#################################
# total size has to be 0x800000 #
#################################
# Deployment area for Managed code 3072K, Mapping issues with deployment areas over 3.5Mb, see issue #691
deploy, data, 0x84, 0x190000, 0x300000,
# Config data for Network, Wireless, certificates, user data 2Mb
config, data, spiffs, 0x490000, 0x200000,
##########################################
# total size has to be 0x800000 or less #
##########################################