Is there a known project for the STM32H747I-Eval board that uses the ethernet stack on board?
I am using the stm32h757i-Eval board and am trying to get a simple Ethernet LWIP application running. I am also using native Ubuntu 18.04. I have the H7 CubeMX repo v1.10.0. I am running the project in STM32CubeIDE. I have verified both the IDE and CubeMX are up to date.
I followed the directions given here. The exception is that I'm using the RMII interface and that I'm using the crystal oscillator as my clock source. Otherwise, the rest of the directions were not difficult to follow. On my board, jumper JP5 is set to pins 2 and 3 to allow the 50Mhz signal to be generated by the pin PC8.
My application builds and uploads to the evaluation board. I can also run it, but when I try to ping the address given in the linked setup, I always get "Host Unreachable" (ping 192.168.1.10) or when using "netcat –ul 55151
" I get service "-ul unkown". 192.168.1.10 is what I set the IP address to under the LWIP settings and disabled DHCP as instructed. I also statically set the IP address of my laptop to 192.168.1.1 which is what is specified in the code portion of the setup.
I'm happy to provide any .ioc file data or regular project code snippets if it is a matter of debugging and there are not existent examples available.