SPIFFS partition not flashed
Posted: Sun Jun 02, 2024 6:42 pm
Hi,
I have a custom partition table that includes a few SPIFFS partitions. Everything worked well until I added another SPIFFS partition. idf.py won't package that SPIFFS partition and I don't know why. Here is my custom partition table:
The build directory contains html.bin, elFinder.bin, roms.bin, but no fpga.bin. The directory 'fpga' is there and is no different in terms of permissions. I am using ESP-IDF 4.4.7.
BTW: I set CONFIG_SPIFFS_MAX_PARTITIONS=4, but I'm not even getting there since idf.py won't create and flash the fpga partition.
Anyone have an idea?
AP
I have a custom partition table that includes a few SPIFFS partitions. Everything worked well until I added another SPIFFS partition. idf.py won't package that SPIFFS partition and I don't know why. Here is my custom partition table:
Code: Select all
nvs, data, nvs, , 0x6000,
phy_init, data, phy, , 0x1000,
factory, app, factory, , 0x180000,
html, data, spiffs, , 200K,
elFinder, data, spiffs, , 6M,
roms, data, spiffs, , 1M,
fpga, data, spiffs, , 6M,
BTW: I set CONFIG_SPIFFS_MAX_PARTITIONS=4, but I'm not even getting there since idf.py won't create and flash the fpga partition.
Anyone have an idea?
AP