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(!(ethif->flags & ETHIF_LINK_PHYUP))
{
/* set link_up for this netif /
netif_set_link_up(ethif->netif);
}
逻辑上感觉应该改成
if(ethif->flags & ETHIF_LINK_PHYUP)
{
/ set link_up for this netif */
netif_set_link_up(ethif->netif);
}