Hi, I am trying to upload a file to ESP32S3 using FatFS. I have the data folder and a small .png in it. I am using arduino-portable and have a local partitions.csv on the same level as .ino. It looks like this: # Name, Type, SubType, Offset, Size, Flags nvs, data, nvs, 0x9000, 0x5000, otadata, data, ota, 0xe000, 0x2000, app0, app, ota_0, 0x10000, 0x640000, app1, app, ota_1, 0x650000,0x640000, storage, data, fat, 0xc90000,0x360000, coredump, data, coredump,0xFF0000,0x10000, In the VM menu I have selected Partition Scheme: Custom and FileSystem Upload Tool: FileFS. I build the project and then I click on Publish Server Data Files in VM menu. In the VS console I get this (had to add spaces here and there to fix formatting): ESP32FSUpload.exe ## recipe.wwwfiles.upload.pattern "c:\program files (x86)\microsoft visual studio\2019\enterprise\common7\ide\extensions\fpbblalf.uhm/ESP32FSUpload.exe" -serial.port=COM6 -build.path="C:\Users\User\AppData\Local\Temp\VMBuilds\ESP32S3_4848S040_Clock3 \esp32_esp32s3\Debug" -target_platform="esp32" -runtime.tools.mkspiffs.path="notTheToolYoureLookingFor" -board.name="ESP32S3 Dev Module" -upload.verbose=True -upload.resetmethod={upload.resetmethod} -upload.speed=921600 -platform.path="C:\Arduino\ESP32S3_Clock3\arduino-portable\packages \esp32\hardware\esp32\3.1.1" -project.name="ESP32S3_4848S040_Clock3.ino" -project.path="C:\Arduino\ESP32S3_Clock3\ESP32S3_4848S040_Clock3" -tools.esptool.cmd="{tools.esptool.cmd}" -tools.esptool.cmd.windows="{tools.esptool.cmd.windows}" -runtime.tools.esptool.path="{runtime.tools.esptool.path}" -compiler.path="C:\Arduino\ESP32S3_Clock3\arduino-portable\packages\esp32\tools \esp-x32\2405/bin/" -build.spiffs_start="{build.spiffs_start}" -build.spiffs_end="{build.spiffs_end}" -build.spiffs_pagesize="{build.spiffs_pagesize}" -build.spiffs_blocksize="{build.spiffs_blocksize}" -build.partitions="" -network.password={network.password} -network.auth_upload={network.auth_upload} -network.port=3232 -upload.tool=esptool_py -tools.esptool_py.cmd="esptool.exe" -tools.esptool_py.cmd.windows="esptool.exe" -runtime.tools.esptool_py.path="C:\Arduino\ESP32S3_Clock3\arduino-portable\pack ages\esp32\tools\esptool_py\4.9.dev3" -build.flash_mode=dio -build.flash_freq=80m ERROR: FATFS partitions not defined for ESP32S3 Dev Module I also checked c:\Users\User\AppData\Local\Temp\VMBuilds\ESP32S3_4848S040_Clock3\esp32_esp 32s3\Debug\partitions.csv and it has the same content as my local partitions.csv
|