I am using ESP32-WROVER module, for some reason, it suddenly stopped working. When on manual reset:
Code: Select all
$ make monitor
MONITOR
--- idf_monitor on COM7 115200 ---
--- Quit: Ctrl+] | Menu: Ctrl+T | Help: Ctrl+T followed by Ctrl+H ---
ets Jun 8 2016 00:22:57
rst:0x1 (POWERON_RESET),boot:0x33 (SPI_FAST_FLASH_BOOT)
flash read err, 1000
ets_main.c 371
ets Jun 8 2016 00:22:57
rst:0x10 (RTCWDT_RTC_RESET),boot:0x33 (SPI_FAST_FLASH_BOOT)
flash read err, 1000
ets_main.c 371
ets Jun 8 2016 00:22:57
rst:0x10 (RTCWDT_RTC_RESET),boot:0x33 (SPI_FAST_FLASH_BOOT)
flash read err, 1000
ets_main.c 371
ets Jun 8 2016 00:22:57
rst:0x10 (RTCWDT_RTC_RESET),boot:0x33 (SPI_FAST_FLASH_BOOT)
flash read err, 1000
ets_main.c 371
ets Jun 8 2016 00:22:57
rst:0x10 (RTCWDT_RTC_RESET),boot:0x33 (SPI_FAST_FLASH_BOOT)
flash read err, 1000
ets_main.c 371
When I try to flash:
Code: Select all
$ make flash
Flashing binaries to serial port COM7 (app at offset 0x10000)...
esptool.py v2.1
Connecting....
Chip is ESP32D0WDQ6 (revision 1)
Uploading stub...
Running stub...
Stub running...
Configuring flash size...
Warning: Could not auto-detect Flash size (FlashID=0xffffff, SizeID=0xff), defaulting to 4MB
Compressed 18320 bytes to 10813...
Wrote 18320 bytes (10813 compressed) at 0x00001000 in 1.0 seconds (effective 153.6 kbit/s)...
A fatal error occurred: Timed out waiting for packet header
make: *** [/home/xxx/esp/esp-idf/components/esptool_py/Makefile.projbuild:55: flash] Error 2
BTW,
BOTH Secure boot in bootloader and flash encryption in boot are off in menuconfig;
Flash SPI mode is DIO in menuconfig
Thanks.