Page 1 of 1

how to flash in Esp32 module

Posted: Thu Apr 18, 2019 1:30 pm
by arunbm123
hello esp Team,

I want to use esp32 module, I want help on wiring so that I can flash the app.
Image

Re: how to flash in Esp32 module

Posted: Thu Apr 18, 2019 5:16 pm
by mikemoy
Start here, and go to the schematic link on the page. It will show you how the kits is wired and what you need.

https://docs.espressif.com/projects/esp ... vkitc.html

Re: how to flash in Esp32 module

Posted: Thu Apr 18, 2019 5:59 pm
by fly135
LOL good thing you posted a picture or we wouldn't know what CPU you were talking about! :D

Be sure to look into GPIO 00 and it's use as a download mode signal during boot. My friend build an Ethernet board and ran the clock into GPIO 00 (the default for ethernet applications). Now the board refuses to boot unless you cycle power or reset it multiple times.

John A

Re: how to flash in Esp32 module

Posted: Fri Apr 19, 2019 7:02 pm
by mikemoy
My friend build an Ethernet board and ran the clock into GPIO 00 (the default for ethernet applications). Now the board refuses to boot unless you cycle power or reset it multiple times.
Yup, I did the same thing on my first build. Wound up tieing the EN pin of the OSC to GPIO 2, and then call phy_device_power_enable_via_gpio() during the init process to fix that.