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
wifi_deinit does not seem to be called after using the esp now driver.
I think the issue is in EspNowManager::drop which updates the WIFI flag and checks if it is 0. However fetch_update returns the previous value which is expected to be 1 since the esp now manger calls wifi_init.
The EspWifiController::dropthen doesn't call wifi_deinit since the WIFI flag was updated to 0 in EspNowManager::drop.
The text was updated successfully, but these errors were encountered:
wifi_deinit
does not seem to be called after using the esp now driver.I think the issue is in
EspNowManager::drop
which updates the WIFI flag and checks if it is 0. Howeverfetch_update
returns the previous value which is expected to be 1 since the esp now manger calls wifi_init.The
EspWifiController::drop
then doesn't callwifi_deinit
since the WIFI flag was updated to 0 inEspNowManager::drop
.The text was updated successfully, but these errors were encountered: