use v2 partition, reduced assets partition by 300k so that the app would fit

This commit is contained in:
Alexandru Szasz 2025-12-20 14:13:14 +02:00
parent 3d59e530f6
commit d5bbd674ae
2 changed files with 3 additions and 3 deletions

View File

@ -13,7 +13,7 @@
"sdkconfig_append": [
"CONFIG_SPIRAM_MODE_QUAD=y",
"CONFIG_ESPTOOLPY_FLASHSIZE_4MB=y",
"CONFIG_PARTITION_TABLE_CUSTOM_FILENAME=\"partitions/v1/4m.csv\""
"CONFIG_PARTITION_TABLE_CUSTOM_FILENAME=\"partitions/v2/4m.csv\""
]
}
]

View File

@ -3,5 +3,5 @@
nvs, data, nvs, 0x9000, 0x4000,
otadata, data, ota, 0xd000, 0x2000,
phy_init, data, phy, 0xf000, 0x1000,
factory, app, factory, 0x10000, 0x270000,
assets, data, spiffs, 0x280000, 0x180000,
factory, app, factory, 0x10000, 0x2BB000,
assets, data, spiffs, 0x2CB000, 0x135000,

1 # ESP-IDF Partition Table
3 nvs, data, nvs, 0x9000, 0x4000,
4 otadata, data, ota, 0xd000, 0x2000,
5 phy_init, data, phy, 0xf000, 0x1000,
6 factory, app, factory, 0x10000, 0x270000, factory, app, factory, 0x10000, 0x2BB000,
7 assets, data, spiffs, 0x280000, 0x180000, assets, data, spiffs, 0x2CB000, 0x135000,