mirror of
https://github.com/tzapu/WiFiManager.git
synced 2026-04-27 00:55:52 +03:00
[GH-ISSUE #1646] Autoreconnect doesn't work due to _arduino_event_cb(): STA Got Same IP #1399
Labels
No labels
📶 WiFi
🕸️ HTTP
Branch
DEV Help Wanted
Discussion
Documentation
ESP32
Example
Good First Issue
Hotfix
In Progress
Incomplete
Needs Feeback
Priority
QA
Question
Task
Upstream/Dependancy
bug
duplicate
enhancement
invalid
pull-request
wontfix
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/WiFiManager#1399
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @Dario-Ciceri on GitHub (Aug 19, 2023).
Original GitHub issue: https://github.com/tzapu/WiFiManager/issues/1646
[ 57622][V][WiFiGeneric.cpp:367] _arduino_event_cb(): STA Got Same IP:192.168.173.158
11:35:48.219 -> Got time adjustment from NTP!
11:35:49.962 -> *wm:AutoConnect: FAILED
Hi, I noticed that even if ESP32 connects to WiFi, switching from ethernet module, wifi manager will say *wm:AutoConnect: FAILED
but ESP32 is successfully connected...
@tablatronix commented on GitHub (Aug 19, 2023):
Interesting
@Dario-Ciceri commented on GitHub (Aug 19, 2023):
I don't know if there's a way to "reset" WiFi and avoid STA Got Same IP by erasing the previous one... I tried many esp API calls but nothing works, even deinit and init again doesn't work...
If I reset esp32 it connects without problem and I think it's because it doesn't have "a previous ip"
P.S. with WiFi.reconnect it works even with same IP so it must be WiFiManager library (?)
I know there's a flag "connected" which is set true only by
if (WiFi.status() == WL_CONNECTED) { connected = true; #ifdef WM_DEBUG_LEVEL DEBUG_WM(F("AutoConnect: ESP Already Connected")); #endif setSTAConfig(); // @todo not sure if this is safe, causes dup setSTAConfig in connectwifi, // and we have no idea WHAT we are connected to }maybe this piece of code
if (connected || connectWifi(_defaultssid, _defaultpass) == WL_CONNECTED) { //connected #ifdef WM_DEBUG_LEVEL DEBUG_WM(F("AutoConnect: SUCCESS")); DEBUG_WM(DEBUG_VERBOSE, F("Connected in"), (String)((millis() - _startconn)) + " ms"); DEBUG_WM(F("STA IP Address:"), WiFi.localIP()); #endifdoesn't detect same ip event? but shouldn't WL_CONNECTED works just fine? Maybe if we could set WL_CONNECTED on STA Got Same IP it could works fine@tablatronix commented on GitHub (Aug 19, 2023):
Sounds like it might be an ESP lib issue, either way I will see if we can workaround it
is [ 57622][V][WiFiGeneric.cpp:367] _arduino_event_cb(): STA Got Same IP:192.168.173.158
the only event you see?
I wonder if switching ap to ap would also do this?
@Dario-Ciceri commented on GitHub (Aug 19, 2023):
Yes and routine stuff like STA disconnected, start etc due to wifimanager behaviour
Switching from ap to ap? Idk, honestly it would be weird if different AP same IP no?
@Dario-Ciceri commented on GitHub (Aug 19, 2023):
oh and also, sometimes a weird error which seems related to
// if retry without delay (via begin()), the IDF is still busy even after returning status // E (5130) wifi:sta is connecting, return error // [E][WiFiSTA.cpp:221] begin(): connect failed!but even withif (_aggresiveReconn) delay(1000);sometimes I get// E (5130) wifi:sta is connecting, return error // [E][WiFiSTA.cpp:221] begin(): connect failed!@Dario-Ciceri commented on GitHub (Aug 19, 2023):
could you also tell me what's causing hostByName(): DNS Failed for www.google.com ?
I'll follow this: https://github.com/espressif/arduino-esp32/issues/1595#issuecomment-429435687
It seems to work, well I was using a task on core 0 with priority 10... but I never heard of this problem before... maybe it's causing problem with wifimanager too, like not letting events to be detected?
@tablatronix commented on GitHub (Aug 20, 2023):
What esp version are you using ?
@Dario-Ciceri commented on GitHub (Aug 21, 2023):
Dev Module, 2.0.4
@Dario-Ciceri commented on GitHub (Aug 30, 2023):
ehy @tablatronix I think I found the problem, look here please: https://github.com/espressif/arduino-esp32/issues/653#issuecomment-755851929
and here: https://github.com/espressif/arduino-esp32/issues/1100#issuecomment-392397250
currently I've upgraded to 2.0.11