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
If you start wifi in WIFI_MODE_STA, and don't connect to a remote AP, the esp_netif_is_netif_up method always returns false, even though the interface has started. Essentially both netif_is_link_up and netif_is_up always return the same values when in STA mode and not connected to a remote AP.
This is inconsistent with both ethernet interfaces and WIFI_MODE_AP where the interface is considered up as long as the service has started, and it does not depend on whether or not a connection link is established.
Attached example, it should output wifi_init_sta interface status -- UP but instead outputs wifi_init_sta interface status -- DOWN
If you start wifi in
WIFI_MODE_STA
, and don't connect to a remote AP, theesp_netif_is_netif_up
method always returns false, even though the interface has started. Essentially bothnetif_is_link_up
andnetif_is_up
always return the same values when in STA mode and not connected to a remote AP.This is inconsistent with both ethernet interfaces and
WIFI_MODE_AP
where the interface is considered up as long as the service has started, and it does not depend on whether or not a connection link is established.Attached example, it should output
wifi_init_sta interface status -- UP
but instead outputswifi_init_sta interface status -- DOWN
The text was updated successfully, but these errors were encountered: