-
Notifications
You must be signed in to change notification settings - Fork 7.5k
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
Router connection: 50% failure (50% success) is back #1733
Comments
hi, i have the exact same problem, i think it started after i updated my esp32-arduino core earlier this month. i have read your issues espressif/esp-idf#401 and #234 but can't find a solution there. |
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions. |
Hi, i have the same ESP32 (MatrixCore32) issue that every second time it works if hard reset. Very Strange and annoying as this never happened with ESP8266. I found out that its related to my AP, as with a Mobile Phone Hotspot it works great every time..... Is there already a working fix or any kind of reasonable workarround, even if not so fancy....stability is my major priority. |
[STALE_SET] This issue has been automatically marked as stale because it has not had recent activity. It will be closed in 14 days if no further activity occurs. Thank you for your contributions. |
[STALE_DEL] This stale issue has been automatically closed. Thank you for your contributions. |
Hi
Please refer to #234
I just installed the actual core (using v3.2-dev-39-gaaf12390 SDK) and get same failure again
With previous core (v3.1-dev-661-gf586f5e6 SDK), as a workaround, WiFiGeneric.cpp was modified as such:
`
} else if(reason == WIFI_REASON_AUTH_EXPIRE) {
if(WiFi.getAutoReconnect()){
WiFi.begin();
}
`
This modification is now omitted in the actual core
Please fix
TIA
EDIT: apparently just adding
does now fix the problem...
The text was updated successfully, but these errors were encountered: