Working on a project with an ESP32-S3 N16R8.
If I compile and upload my sketch using the default partition scheme of 'Default 4MB with spiffs' all is well.
When I add a partitions.csv file to my project folder (where the *.ino lives) with the following content (which is a slightly changed version of the default.csv):
# Name, Type, SubType, Offset, Size, Flags
nvs, data, nvs, 0x9000, 0x5000,
otadata, data, ota, 0xE000, 0x2000,
app0, app, ota_0, 0x10000, 0x80000,
app1, app, ota_1, 0x90000, 0x80000,
spiffs, data, spiffs, 0x110000,0x80000,
sensordata, data, undefined,0x190000,0x270000,
Then the build shows the correct new size for app0 ('Used X% of a 524288 byte maximum', which is the 0x8000) so the build process has noticed the partitions.csv file but when I try to upload the sketch esptool fails with
No such file or directory
Quote:Try.ino.partitions.bin
That FlashTry.ino.partitions.bin is preceeded by a path but whatever I try I can't get that path to be displayed here in this post.
What am I missing? From the documentation I understood that just having the partitions.csv file (in the correct place) should be enough. Right?