-
Notifications
You must be signed in to change notification settings - Fork 13.3k
Leaving.. Hard reseting via RTS pin... on ESP8266 NODEMCU #6336
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
it is a sucessful upload. the esptool resets the esp8266 after upload |
Hi ,its still not working.How long does it take to reset |
reset is immediate. how do you know it doesn't work? |
The NodeMCU is not connecting to my wifi router, I set it to nodemcu and tried again but got the same message . |
Check GPIOs are correctly driven at boot or reset time:
|
do you have some debug prints in |
Closing because I don't see a core issue here. |
I am also get same error |
read the comments above |
After updating the Arduino IDE to 1.8.10 the ESP-01s with this usb adapter does not reset after successfully uploading a program using the generic configuration. I've tried with a NodeMCU 0.9 (ESP-12) and that one resets correctly using the board specific configuration. |
This adapter has a physical switch for running or programming an esp-01. |
@d-a-v they left the switch in programming mode. the old esptool didn't reset after upload so the uploaded sketch did run until next reset. It allowed quick debugging. |
@GonzalezAnguita Are you able to try #6429 ? |
@Saketh-Bobbala I Had the same issue, try changing the baud value in the serial monitor (do this if you are using Arduino) to the one that is in the code. |
change the connection frequency to 2.4Ghz |
This article might help you to to understand anf fix the issue |
@Saketh-Bobbala This worked for me. Tools > Reset Method > "no dtr (aka ck)". Then I got this : Leaving... |
I solved it this way: -Above should work well |
|
@rugimike, if your board doesn't have autoreset feature, you don't need to make this adrenaline action. if io 0 is low at reset the esp8266 starts in flashing mode and stays in it until next reset. then at reset again the io 0 level counts |
Hi. Its true.(even my board does not have autoreset). what you do after
seeing 'leaving.. hard/soft resetting via RTS pin..' is to.
1. disconnect the GPIO 0 pin.
2. connect the RESET of the ESP8266 to ground, for just a second and then
disconnect it.
please see below.
[image: image.png]
…On Sun, 1 Mar 2020 at 21:45, Juraj Andrássy ***@***.***> wrote:
@rugimike <https://github.com/rugimike>, if your board doesn't have
autoreset feature, you don't need to make this adrenaline action. if io 0
is low at reset the esp8266 starts in flashing mode a stays in it until
next reset. then at reset again the io 0 level counts
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub
<#6336?email_source=notifications&email_token=ABULD4CLEOYS2YWXVZPYLGTRFKUMBA5CNFSM4IGLSON2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOENNHHIA#issuecomment-593130400>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/ABULD4C6O5ZEI4TUMY5BUILRFKUMBANCNFSM4IGLSONQ>
.
--
Best Regards
Michael Rugi Njoroge
|
[image: image.png]
…On Sun, 1 Mar 2020 at 22:47, Michael Rugi ***@***.***> wrote:
Hi. Its true.(even my board does not have autoreset). what you do after
seeing 'leaving.. hard/soft resetting via RTS pin..' is to.
1. disconnect the GPIO 0 pin.
2. connect the RESET of the ESP8266 to ground, for just a second and then
disconnect it.
please see below.
[image: image.png]
On Sun, 1 Mar 2020 at 21:45, Juraj Andrássy ***@***.***>
wrote:
> @rugimike <https://github.com/rugimike>, if your board doesn't have
> autoreset feature, you don't need to make this adrenaline action. if io 0
> is low at reset the esp8266 starts in flashing mode a stays in it until
> next reset. then at reset again the io 0 level counts
>
> —
> You are receiving this because you were mentioned.
> Reply to this email directly, view it on GitHub
> <#6336?email_source=notifications&email_token=ABULD4CLEOYS2YWXVZPYLGTRFKUMBA5CNFSM4IGLSON2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOENNHHIA#issuecomment-593130400>,
> or unsubscribe
> <https://github.com/notifications/unsubscribe-auth/ABULD4C6O5ZEI4TUMY5BUILRFKUMBANCNFSM4IGLSONQ>
> .
>
--
Best Regards
Michael Rugi Njoroge
--
Best Regards
Michael Rugi Njoroge
|
Thanks.great |
Thanks... |
You can find your answer here. |
Platform
Settings in IDE
Problem Description
Unable to upload code to nodemcu (Leaving... Resetting via RTS pin)
MCVE Sketch
#define BLYNK_PRINT Serial
#include <ESP8266WiFi.h>
#include <BlynkSimpleEsp8266.h>
// You should get Auth Token in the Blynk App.
// Go to the Project Settings (nut icon).
char auth[] = "yPCwZ9AtBsjxhbzx2xGGieUodNAofDk";
// Your WiFi credentials.
// Set password to "" for open networks.
char ssid[] = "TP-Link";
char pass[] = "12345678";
void setup()
{
// Debug console
Serial.begin(11520);
Blynk.begin(auth, ssid, pass);
}
void loop()
{
Blynk.run();
}
The text was updated successfully, but these errors were encountered: