Search found 1 match

by VadymOstanin
Thu Sep 04, 2025 10:20 am
Forum: ESP-IDF
Topic: WiFi AP disappeared suddenly while using HTTP Server
Replies: 11
Views: 14178

Re: WiFi AP disappeared suddenly while using HTTP Server

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 ...

Go to advanced search