-
Notifications
You must be signed in to change notification settings - Fork 13.3k
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
Fix OTA in AP mode #5894
Fix OTA in AP mode #5894
Conversation
…station is connected before processing. Change the logic to WiFi.isConnected() OR WiFi.softAPgetStationNum()>0 fixes the issue.
This commit is the source of this Issue #5915 |
@zacharydrew are you absolutely sure you reverted only this specific change and nothing else across the entirestreet core you're using? |
I opened wireshark .. The Flooding stops once it connects to a Station .. |
The flooding only happens if the wifi mode is AP_STA and there is no connection to a WiFi Station .. |
Let's discuss in the issue, please add this info there. |
OTA is broken in AP mode because ESP8266mDNS is checking whether the station is connected before processing. Change the logic to WiFi.isConnected() OR WiFi.softAPgetStationNum()>0 fixes the issue.