STM32F439 with FreeRTOS & ETH gets stuck in MX_LWIP_Init()
Hi,
I want to creater a telnet server but can't even get the board to respond to a ping. I followed the following sequence:
- Crearted a new project
- selected my Nucleo-F439ZI board
- selected to initialize the peripherals to their default mode
- Got the following clock config (note I changed the HSE to 25MHz):

Enabled FreeRTOS CMSIS_V
- Changed Timebase Source to TIM14 (in SYS config)
- Enabled USE_NEWLIB_REENTRANT (In FREERTOS config)
- Confirmed that ETH is enabled with RMII & confirmed all the pins are routed correctly (no changes needed)
- Enabled LWIP
- Changed the Driver_PHY to LAN8742
- Disabled DHCP
- Set IP to 192.168.000.123 with 255.255.255.0 as subnet
- Ctrl+s to create the sources!
- compiled & loaded the application & tried to ping the above IP (.123) from my laptop (set to 192.168.0.111) but do not get any response.
- I realized that it appears to get stuck in MX_LWIP_Init(). Why is this and how can I fix it?
