Question
STM32H743ZI NUCLEO 144 & LWIP - Can't Ping The Board
Hope all is going well. I'm trying to ping STM32H743ZI NUCLEO 144 using LWIP middle-ware. Code generated by CubeMX.
- Configurations:
- Set the HCLK to 400 MHz
- Enabled the CPU ICache and DCache (under Cortex_M7 Configuration)
- Enabled MPU (Region0, Region1 & Region2)
- Enabled LWIP
- Selected LAN8742 as the Driver_PHY (under LwIP>Platform Settings)
- DHCP disabled (IP, MASK: 255,255,255,000 , Gateway: Modem IP)
- RTOS disabled
- LWIP_HTTPD (LWIP_HTTPD_CGI & LWIP_HTTPD_SSI enabled)
- LWIP_HTTPD_MAX_TAG_NAME_LEN set to 16
- ICMP enabled (LWIP_BROADCAST_PING and LWIP_MULTICAST_PING in LwIP Key Options>IPMP Options).
- Code Generated for Keil V5
- MX_LWIP_Process added to the main function in While loop.
while(1)
{
MX_LWIP_Process();
}I don't know how should I configure the CubeMX or change the generated code to be able to ping my board.
