Re: WiFi AP disappeared suddenly while using HTTP Server
Posted: Thu Sep 04, 2025 10:20 am
I had the same issue, and
it was solved by calling "yield();" or "taskYIELD();" in webserver' handlers and every place in code where long work may be. "taskYIELD();" say to scheduler to switch work from your code to some other task, and specially WiFi, for short period of time. Otherwise if your code will block WiFi for long period of time, than WiFi will not work.
it was solved by calling "yield();" or "taskYIELD();" in webserver' handlers and every place in code where long work may be. "taskYIELD();" say to scheduler to switch work from your code to some other task, and specially WiFi, for short period of time. Otherwise if your code will block WiFi for long period of time, than WiFi will not work.