-
Notifications
You must be signed in to change notification settings - Fork 137
Description
Port
USER_DEFINED
Target chip
ESP32-S3
Hardware Configuration
Custom ESP32-S3 board connected via USB CDC
Log output
Found 2 serial ports
Connecting to ttyACM0
Found esp32s3
Flash will be erased from 0x0 to 0x5fff
Flash size detection failed, falling back to default
Writing at 0x400... (4%)
Writing at 0xc00... (14%)
Writing at 0x1400... (23%)
Writing at 0x1c00... (33%)
Writing at 0x2400... (42%)
Writing at 0x2c00... (52%)
Writing at 0x3400... (61%)
Writing at 0x3c00... (71%)
Writing at 0x4400... (80%)
Writing at 0x4c00... (90%)
Flash will be erased from 0x10000 to 0x164fff
Flash size detection failed, falling back to default
Writing at 0x10400... (0%)
Writing at 0x32400... (10%)
Writing at 0x54400... (20%)
Writing at 0x76400... (30%)
Writing at 0x98400... (40%)
Writing at 0xba400... (50%)
Writing at 0xdc400... (60%)
Writing at 0xfe400... (70%)
Writing at 0x120400... (80%)
Writing at 0x142800... (90%)
Writing at 0x1644e0... (100%)
Flash will be erased from 0x1010000 to 0x1ffffff
Flash size detection failed, falling back to default
Error:
COMMAND_FAILED
Erasing flash failed (ESP_LOADER_ERROR_INVALID_RESPONSE)
Cannot connect to target (ESP_LOADER_ERROR_INVALID_RESPONSE)
More Information
I've written a small native CLI/GUI application much like the Espressif Flash Download Tool to make downloading multiple binaries easier. So far I've tested this app with the hello_world example on various Espressif demo boards. Uploading the example (consisting of bootloader, app and partition table) works flawlessly.
Thinking that my app works I've moved on to trying to flash my current project on a custom ESP32-S3 board. The projects flash files are
"flash_files" : {
"0x0" : "bootloader/bootloader.bin",
"0x10000" : "WULF.bin",
"0x8000" : "partition_table/partition-table.bin",
"0xa000" : "ota_data_initial.bin",
"0x1010000" : "storage.bin",
"0x810000" : "nvs.bin"
}As you can probably guess some of those binaries are bigger than the hello_world example
# ESP-IDF Partition Table
# Name, Type, SubType, Offset, Size, Flags
phy_init, data, phy, , 4K,
otadata, data, ota, , 8K,
ota_0, app, ota_0, , 4M,
ota_1, app, ota_1, , 4M,
nvs, data, nvs, , 8M,
storage, data, spiffs, , 16320K,
Uploading those bigger binaries does not work. I'm getting the following output from the library (see full log above)
Error:
COMMAND_FAILED
I assume that for some reason the library can't handle certain memory region or binary sizes (yet)?
This might also be related to #23?
Any suggestions? Is this a known issue?