Closed tbec closed 5 years ago
Currently the wifi_manager is running in a 10ms xTaskDelay loop. I bet we can set semaphores in thewifi_manager_event_handler to handle the execution of a loop instead of this delay. Same for http_server.
wifi_manager
xTaskDelay
wifi_manager_event_handler
http_server
Looked more closely and no polling is actually happening. It's already locked on a semaphore.
Currently the
wifi_manager
is running in a 10msxTaskDelay
loop. I bet we can set semaphores in thewifi_manager_event_handler
to handle the execution of a loop instead of this delay. Same forhttp_server
.