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
FreeRTOS_IsNetworkUp will return true on Phy link up event. When DHCP is enabled, device won't have a valid IP address at that time, which could lead to subsequent socket operation failure.
Workaround
Instead of calling FreeRTOS_IsNetworkUp, applications shall check whether FreeRTOS_GetIPAddress() returns a valid DHCP address before any socket operation.
The text was updated successfully, but these errors were encountered:
Issue
FreeRTOS_IsNetworkUp will return true on Phy link up event. When DHCP is enabled, device won't have a valid IP address at that time, which could lead to subsequent socket operation failure.
Workaround
Instead of calling FreeRTOS_IsNetworkUp, applications shall check whether FreeRTOS_GetIPAddress() returns a valid DHCP address before any socket operation.
The text was updated successfully, but these errors were encountered: