Skip to content

Commit

Permalink
Fix partition tables for 4MB and 8MB (#1837)
Browse files Browse the repository at this point in the history
***NO_CI***
  • Loading branch information
josesimoes authored Mar 1, 2021
1 parent d0f0736 commit ef194aa
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
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, 0x1B0000,
# Deployment area for Managed code 2240k
deploy, data, 0x84, 0x190000, 0x230000,
# Config data for Network, Wireless, certificates, user data 256k
config, data, spiffs, 0x340000, 0x40000,
config, data, spiffs, 0x3C0000, 0x40000,
#################################
# total size has to be 0x400000 #
#################################
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, 0x1B0000,
# Deployment area for Managed code 5568k
deploy, data, 0x84, 0x190000, 0x570000,
# Config data for Network, Wireless, certificates, user data 1Mb
config, data, spiffs, 0x340000, 0x100000,
config, data, spiffs, 0x700000, 0x100000,
#################################
# total size has to be 0x800000 #
#################################

0 comments on commit ef194aa

Please sign in to comment.