cancel
Showing results for 
Search instead for 
Did you mean: 

Ethernet-TCPip Nucleo F429ZIT6

Kendric RUIZ
Associate
Posted on April 06, 2017 at 13:14

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 #stm32f4
2 REPLIES 2
Imen.D
ST Employee
Posted on April 06, 2017 at 15:02

Hi

kendric.ruiz

,

You find many examples ready-to-user with

STM32CubeF4

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

When your question is answered, please close this topic by clicking "Accept as Solution".
Thanks
Imen
Posted on April 06, 2017 at 15:24

Thanks a lot !

Kendric