"Second stage bootloader binary image is loaded from flash starting at address 0x1000. If Secure Boot is in use then the first 4 kB sector of flash is used to store secure boot IV and digest of the bootloader image. Otherwise, this sector is unused."
// SRC: https://docs.espressif.com/projects/esp ... artup.html
I'm not using secure boot and I hence my desire to make use of the first 4KB section.
Partitions.csv has the following content:
Code: Select all
# Name, Type, SubType, Offset, Size, Flags
abc, data, 200, 0x0000, 0x1000, encrypted
nvs, data, nvs, 0x10000, 0x3000
otadata, data, ota, 0x20000, 0x2000
ota1, app, ota_1, 0x30000, 0xE0000Compiling under IDF 5.0 gets this stupid error: "CSV Error: First partition offset 0x0 overlaps end of partition table 0x8000"...
Wow! Can anyone figure out how a 0x1000 bytes partition starting at the beggining of flash @ 0x0000 can overlap "end of partition table 0x8000"??????
