Move LWIP from barebone to FreeRTOS
Hi,
I'm able to configure LWIP with my Nucleo-F439 board so that it responds to pings as expected. I however want to be able to transport some useful information to a socket (telnet or similar) and I want to use FreeeRTOS for that. I however am unable to get it working, in my Default Task, it always gets stuck in MX_LWIP_Init(), in particular here:
#if ( ( INCLUDE_xTaskGetSchedulerState == 1 ) || ( configUSE_TIMERS == 1 ) )
{
configASSERT( !( ( xTaskGetSchedulerState() == taskSCHEDULER_SUSPENDED ) && ( xTicksToWait != 0 ) ) );
}
#endif
which appears to be an issue with the clock config. I duplicated my clock configuration from the working barebones appliaction 1:1 but it still doesn't appear to work.
The GPIO config looks to be correct too. What else might I be missing?
