How to configure XCore407I STM32 Board Ethernet in Stm32CubeIDE?
I have an XCore407I board with an Ethernet port installed. I'm trying to create a simple UDP server in Stm32CubeIDE. Compilation and uploading to the board is OK. But the board doesn't respond to ping and isn't visible in the router's device list.

Here are my settings in IDE.
Here is the main code.
int main(void)
{
HAL_Init();
SystemClock_Config();
/* Initialize all configured peripherals */
MX_GPIO_Init();
MX_LWIP_Init();
// Udp init function
udpServer_init();
while (1)
{
MX_LWIP_Process();
}
}Unfortunately, I can't attach the entire project here. But I can add code from other modules upon request.
Can you tell me how to set this up correctly so it works? Thank you.





