ESP32 boot error using ESPTOOL with *.bin file

Hi, I got a problem when using ESPTOOL with a *.bin file creared from Arduino.
Arduino creates three files and I use Blink.ino.bin without bootloader.
The program is very sinple, I use ex. Blink. It works 100% when upload from Arduino.

Using ESPTOOL I got error as below:
12:17:17.499 -> rst:0x10 (RTCWDT_RTC_RESET),boot:0x13 (SPI_FAST_FLASH_BOOT)
12:17:17.499 -> configsip: 0, SPIWP:0xee
12:17:17.499 -> clk_drv:0x00,q_drv:0x00,d_drv:0x00,cs0_drv:0x00,hd_drv:0x00,wp_drv:0x00
12:17:17.499 -> mode:DIO, clock div:1
12:17:17.499 -> load:0x3f400020,len:44596
12:17:17.856 -> ets Jul 29 2019 12:21:46

I also tried to change the address 0x01000, 0x8000, 0x10000, it does not help.
Below is my ESPTOOL setup file:
set PORT=COM3
set BAUD=921600
esptool.exe --chip esp32 --port %PORT% --baud %BAUD% write_flash --erase-all 0x1000 Blink.bin
pause

Can any tell me what is wrong?

This topic was automatically closed 180 days after the last reply. New replies are no longer allowed.