Is my ESP32 dead?

Hello,

Sorry if it is the wrong place, i’m newie on all this thing of esp, platformio, blogs and stuff.
I have got an ESP32 devikit. I started working on my app one week ago, with no issue until yesterday. Yesterday I started seeing some strange behaviour during the wifi connection, and today I cannot even connect to the ESP. What I see is this:

ets Jun 8 2016 00:22:57

rst:0x1 (POWERON_RESET),boot:0x13 (SPI_FAST_FLASH_BOOT)
ets Jun 8 2016 00:22:57

rst:0x10 (RTCWDT_RTC_RESET),boot:0x13 (SPI_FAST_FLASH_BOOT)
configsip: 0, SPIWP:0x00
clk_drv:0x00,q_drv:0x00,d_drv:0x00,cs0_drv:0x00,hd_drv:0x00,wp_drv:0x00
mode:DIO, clock div:1
load:0x3fff0008,len:8
load:0x3fff0010,len:160
load:0x40078000,len:10632
load:0x40080000,len:252
entry 0x40080034


The stars at the end grows with time. Some extra information:

  • Platform = espressif32
  • Board=esp32dev
  • Framework=arduino
  • Windows 10
  • Platformio+Atom = Ide 2.0.0-beta.4 - Core 3.4.0b9
  • Driver installed on windows 10 as "Silicon Labs CP210x USB to UART Bridge (COM4)
  • The serial monitor speed is at 115200 bauds.

Is my esp32 devkit dead? How can I bring it to life again?

Thanks in advance

Hi @koke.montoya!
Looks strange, the first step I would recommend is to completely erase your flash memory:

python c:\Users\YOUR_USERNAME\.platformio\packages\tool-esptoolpy\esptool.py --chip esp32 --port COM4 --baud 115200 --before default_reset --after hard_reset erase_flash

And then program the board with your sketch.

1 Like

That works. Thanks !! :slight_smile: