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
there are at least 2 issues i see with the wifi library right now
when turning off the AP during runtime by calling mgos_wifi_setup_ap( wifi.ap.enable=false ) the STA will sometimes now connect because the esp radio isn't started
wifi_scan does not handle the scenario where STA is connected and needs to be stopped (similar to how it handles the STA being off
similar to 1 if STA is connected and AP is turned off, STA will sometime disconnect and have to reconnect
calling wifi scan will sometimes not produce a scan callback
To elaborate on 3, if current mode is AP+STA, STA is connected to a network... there needs to be a good way to just turn the AP off without causing a STA Disconnect. similarly when turning AP on.
This seems to fix item 4, but probably needs broader testing
The text was updated successfully, but these errors were encountered:
there are at least 2 issues i see with the wifi library right now
mgos_wifi_setup_ap( wifi.ap.enable=false )
the STA will sometimes now connect because the esp radio isn't startedTo elaborate on 3, if current mode is AP+STA, STA is connected to a network... there needs to be a good way to just turn the AP off without causing a STA Disconnect. similarly when turning AP on.
This seems to fix item 4, but probably needs broader testing
The text was updated successfully, but these errors were encountered: