You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Increased task sizes to prevent crashing. (see notes)
Changes
Removed netconn_free manual call. (see notes)
Notes
I was not able to replicate a crash reported to me but increasing the task size by 1k fixed the issue. Most likely the task size was just enough and was crashing in a wifi-rich environment when performing a scan.
There was a memory leak in lwip esp-idf implementation that was fixed with issue 784: espressif/esp-idf#784. In esp32-wifi-manager, I worked around the problem by calling netconn_free manually after a netconn_delete. As it is no longer necessary; I removed the call.