Skip to content

ESP32 DevKit V4 dont run after power cycle #1471

@ivanbar

Description

@ivanbar

Board: ESP32 Dev Module V4
Core Installation/update date: 4/06/2018
IDE name: Arduino IDE 1.8.3
Flash Frequency: 80Mhz
Upload Speed: 115200

Hello,

I ve bought several ESP32 devkit V4 from expressif, and I have the same problem:

After a power cycle, the program STOPS.

I need to reset to re start program execution.

Same problem in Windows 10 and Linux, tried several upload velocities, and frecuencies.

Only if I put GPIO 12 to GND and GPIO 2 to 3,3V program runs ok after power cycle.

Any idea to solve this ??

Thank you very much.

Sketch:

// the setup function runs once when you press reset or power the board
void setup() {
// initialize digital pin LED_BUILTIN as an output.
pinMode(26, OUTPUT);
}

// the loop function runs over and over again forever
void loop() {
digitalWrite(26, HIGH); // turn the LED on (HIGH is the voltage level)
delay(1000); // wait for a second
digitalWrite(26, LOW); // turn the LED off by making the voltage LOW
delay(1000); // wait for a second
}


### Debug Messages:

No Error is shown, because if I start serial comunication, reset is done, and program runs ok.

ets Jun 8 2016 00:22:57

rst:0x1 (POWERON_RESET),boot:0x13 (SPI_FAST_FLASH_BOOT)
configsip: 0, SPIWP:0xee
clk_drv:0x00,q_drv:0x00,d_drv:0x00,cs0_drv:0x00,hd_drv:0x00,wp_drv:0x00
mode:DIO, clock div:2
load:0x3fff0018,len:4
load:0x3fff001c,len:956
load:0x40078000,len:0
load:0x40078000,len:13088
entry 0x40078a5c

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions