/**
* @brief Notify the User about the network interface config status
* @param netif: the network interface
*/
static void ethernet_link_status_updated(struct netif *netif)
{
if (netif_is_up(netif))
{
printf("%ld - link status callback: netif_is_up!\n", HAL_GetTick());
}
else /* netif is down */
{
printf("%ld - link status callback: netif_is_down!\n", HAL_GetTick());
}
}