2017-04-06 04:14 AM
Hi,
I use STM32CubeMX to generate t
he configuration of LWip on my card (nucleo F429ZIT6).
Once my card program, I address a fixed IP address but I can't see my card on the local networks.
The code generated is :int main(){
HAL_INIT();
SystemClock_Config(); MX_LWIP_INIT(); While(1);}
I have no mistake, should I be able to ping my card?
Thank !#tcp/ip #lwip #ethernet #cubemx #stm32f42017-04-06 06:02 AM
Hi
kendric.ruiz
, You find many examples ready-to-user withSTM32CubeF4
at this path that can help you on your project and you may re-use sections available in the examples or get inspired from them: STM32Cube_FW_F4_V1.0\Projects\STM32469I_EVAL\Applications\LwIP- AN3966 : “LwIP TCP/IP stack demonstration for STM32F4x7 microcontrollers�?
- UM1713 : “Developing applications on STM32Cube with LwIP TCP/IP stack�?Imen
2017-04-06 08:24 AM
Thanks a lot !
Kendric