Skip to main content
Visitor II
January 9, 2023
Solved

Enable and Ping Ethernet on STM32F769 Discovery Board

  • January 9, 2023
  • 2 replies
  • 2028 views

Greetings !

I am very new to Controllers , I need to enable and ping the Ethernet on STM32F769 .

Can anyone kindly suggest me with the steps/procedure to enable Ethernet in STM CubeIDE so that I can ping from my Local Machine.

Thanks

    This topic has been closed for replies.
    Best answer by Pavel A.

    This unfortunately is more complicated that one could suppose.

    Please try to start from one of ready examples, make one of these run on your board.

    Check only the functionality that you want (assignment of static IP address or DHCP and ping).

    Would be wonderful if you can run the tests on a isolated private network and use wireshark.

    https://github.com/STMicroelectronics/STM32CubeF7/tree/master/Projects/STM32F769I-Discovery/Applications/LwIP

    https://github.com/STMicroelectronics/STM32CubeF7/tree/master/Projects/STM32F769I-Discovery/Applications/mbedTLS

    2 replies

    Pavel A.Answer
    Super User
    January 9, 2023

    This unfortunately is more complicated that one could suppose.

    Please try to start from one of ready examples, make one of these run on your board.

    Check only the functionality that you want (assignment of static IP address or DHCP and ping).

    Would be wonderful if you can run the tests on a isolated private network and use wireshark.

    https://github.com/STMicroelectronics/STM32CubeF7/tree/master/Projects/STM32F769I-Discovery/Applications/LwIP

    https://github.com/STMicroelectronics/STM32CubeF7/tree/master/Projects/STM32F769I-Discovery/Applications/mbedTLS

    PG.9Author
    Visitor II
    January 20, 2023

    @Pavel A.​  Thanks for the suggestions !

    Thanks