I created the custom .csv and specified its location in menuconfig, where I also updated the app start address and saved the sdkconfig file. Next, I run "make partition_table" which generates the binary partition table from the custom csv. when I run make and flash the esp32, the chip gets stuck in a reset loop when it hits nvs_flash_init_custom()
I've played with the order, size, and offsets in the default singleapp_partition table to get a custom csv which typically look something like
Code: Select all
# Name, Type, SubType, Offset, Size, Flags
phy_init, data, phy, 0xf000, 0x1000,
factory, app, factory, 0x10000, 1M,
nvs, data, nvs, , 12M,
Josh