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