forked from espressif/arduino-esp32
New partitions (#192)
* Add new partition scheme * Init NVS early, so it can be used without BT or WiFi
This commit is contained in:
BIN
tools/partitions/boot_app0.bin
Normal file
BIN
tools/partitions/boot_app0.bin
Normal file
Binary file not shown.
BIN
tools/partitions/default.bin
Normal file
BIN
tools/partitions/default.bin
Normal file
Binary file not shown.
@ -1,4 +1,6 @@
|
||||
# Name, Type, SubType, Offset, Size, Flags
|
||||
nvs, data, nvs, 0x9000, 0x6000,
|
||||
phy_init, data, phy, 0xf000, 0x1000,
|
||||
factory, app, factory, 0x10000, 1M,
|
||||
# Name, Type, SubType, Offset, Size, Flags
|
||||
nvs, data, nvs, 0x9000, 0x5000
|
||||
otadata, data, ota, 0xe000, 0x2000
|
||||
app0, app, ota_0, 0x10000, 1M,
|
||||
app1, app, ota_1, , 1M,
|
||||
spiffs, data, spiffs, , 0x1F0000,
|
||||
|
|
@ -102,10 +102,9 @@ env.Append(
|
||||
],
|
||||
|
||||
UPLOADERFLAGS=[
|
||||
"0x1000", '"%s"' % join(FRAMEWORK_DIR, "tools",
|
||||
"sdk", "bin", "bootloader.bin"),
|
||||
"0x8000", '"%s"' % join(FRAMEWORK_DIR, "tools",
|
||||
"sdk", "bin", "partitions_singleapp.bin"),
|
||||
"0x1000", '"%s"' % join(FRAMEWORK_DIR, "tools", "sdk", "bin", "bootloader.bin"),
|
||||
"0x8000", '"%s"' % join(FRAMEWORK_DIR, "tools", "partitions", "default.bin"),
|
||||
"0xe000", '"%s"' % join(FRAMEWORK_DIR, "tools", "partitions", "boot_app0.bin"),
|
||||
"0x10000"
|
||||
]
|
||||
)
|
||||
|
Reference in New Issue
Block a user