Even if flashing works perfectly :
Code: Select all
python /home/pasca/esp/esp-idf/components/esptool_py/esptool/esptool.py --chip esp32 --port "COM7" --baud 115200 --before "default_reset" --after "hard_reset" write_flash -z --flash_mode "dio" --flash_freq "40m" --flash_size detect 0x1000 /home/pasca/esp/TempC/build/bootloader/bootloader.bin 0x10000 /home/pasca/esp/TempC/build/hello-world.bin 0x8000 /home/pasca/esp/TempC/build/partitions_singleapp.bin
esptool.py v2.1
Connecting....
Chip is ESP32D0WDQ6 (revision 1)
Uploading stub...
Running stub...
Stub running...
Configuring flash size...
Auto-detected Flash size: 4MB
Flash params set to 0x0220
Compressed 19376 bytes to 11438...
Wrote 19376 bytes (11438 compressed) at 0x00001000 in 1.0 seconds (effective 153.8 kbit/s)...
Hash of data verified.
Compressed 144064 bytes to 72004...
Wrote 144064 bytes (72004 compressed) at 0x00010000 in 6.4 seconds (effective 180.1 kbit/s)...
Hash of data verified.
Compressed 3072 bytes to 82...
Wrote 3072 bytes (82 compressed) at 0x00008000 in 0.0 seconds (effective 1621.5 kbit/s)...
Hash of data verified.
Leaving...
Hard resetting...
Code: Select all
$ python /home/pasca/esp/esp-idf/components/esptool_py/esptool/esptool.py image_info build/hello-world.bin
esptool.py v2.1
WARNING: Suspicious segment 0xee, length 0
WARNING: Suspicious segment 0x0, length 16777216
A fatal error occurred: End of file reading segment 0x0, length 16777216 (actual length 144040)
Kind regards,
Pascal