Posted on March 06, 2018 at 14:33When combining FreeRTOS and LWIP, enabling LWIP_NETIF_LINK_CALLBACK is important, but does not work 'out of the box'.The auto generated code adds a 'LinkThr' FreeRTOS Task, with main function 'ethernetif_set_link()' ...
Posted on February 28, 2018 at 11:14Hi,I had a similar problem with Ethernet not working properly if the ethernet cable was unplugged on boot.The solution was to make sure to call netif_set_up(). This should not be confused with netif_set_link_up()....