feat(factory): add local flashing toolkit and secure OTA defaults

This commit is contained in:
admin
2026-03-02 01:57:39 +08:00
parent 809fcf6548
commit 3d3c3ebac2
27 changed files with 5260 additions and 4 deletions

View File

@@ -1,4 +1,8 @@
# Name, Type, SubType, Offset, Size, Flags
nvs, data, nvs, , 0x6000,
phy_init, data, phy, , 0x1000,
factory, app, factory, , 4M,
# ESP-IDF Partition Table
# Name, Type, SubType, Offset, Size, Flags
nvs, data, nvs, 0x11000, 0x10000,
otadata, data, ota, 0x21000, 0x2000,
phy_init, data, phy, 0x23000, 0x1000,
ota_0, app, ota_0, 0x30000, 0x780000,
ota_1, app, ota_1, 0x7B0000, 0x780000,
nvs_key, data, nvs_keys,0xF30000, 0x1000, encrypted,
1 # Name # ESP-IDF Partition Table Type SubType Offset Size Flags
2 nvs # Name, Type, SubType, Offset, Size, Flags data nvs 0x6000
3 phy_init nvs, data, nvs, 0x11000, 0x10000, data phy 0x1000
4 factory otadata, data, ota, 0x21000, 0x2000, app factory 4M
5 phy_init, data, phy, 0x23000, 0x1000,
6 ota_0, app, ota_0, 0x30000, 0x780000,
7 ota_1, app, ota_1, 0x7B0000, 0x780000,
8 nvs_key, data, nvs_keys,0xF30000, 0x1000, encrypted,