From d5a98f9a3948a78fc6dd712aebbc3d10a25b36c3 Mon Sep 17 00:00:00 2001 From: Sagar Date: Mon, 26 Jul 2021 13:37:12 -0400 Subject: [PATCH] Doc: Updated Troubleshooting file (#5430) --- docs/source/troubleshooting.rst | 34 +++++++++++++++++++++++++++++---- 1 file changed, 30 insertions(+), 4 deletions(-) diff --git a/docs/source/troubleshooting.rst b/docs/source/troubleshooting.rst index f0d2df2a..f2398502 100644 --- a/docs/source/troubleshooting.rst +++ b/docs/source/troubleshooting.rst @@ -1,5 +1,5 @@ ############### -Troubleshotting +Troubleshooting ############### Common Issues @@ -18,10 +18,36 @@ Building Flashing -------- -* The board is not flashing. +Why is my board not flashing/uploading when I try to upload my sketch? +********************************************************************** + +If you are trying to upload a new sketch and your board isn't responding, there are some possible reasons. +To be able to upload the sketch via serial interface, the ESP32 must be in the download mode. The download mode allows you to upload the sketch over the serial port and to get into it, you need to keep the **GPIO0** in LOW while a resetting (**EN** pin) cycle. + +Possible fatal error message from the Arduino IDE: + + *A fatal error occurred: Failed to connect to ESP32: Timed out waiting for packet header* + +Here are some steps that you can try to: + +* Check your USB cable and try a new one. +* Change the USB port. +* Check your power supply. +* In some instances, you must keep **GPIO0** LOW during the uploading process via serial interface. +* Hold-down the **“BOOT”** button in your ESP32 board while uploading/flashing. + +In some development boards, you can try adding the reset delay circuit, as decribed in the *Power-on Sequence* section on the `ESP32 Hardware Design Guidelines `_ in order to get into the download mode automatically. Hardware -------- -* Power Source -* Bad USB cable or charging only cables +Why is my computer not detecting my board? +************************************************** + +If your board is not detected after connecting into the USB, you can try to: + +* Check if the USB driver is missing. - `USB Driver Download Link `_ +* Check your USB cable and try a new one. +* Change the USB port. +* Check your power supply. +* Check if the board is damaged or defective.