2026-01-16 9:36 AM
Hi everyone,
I’m trying to get the LwIP examples from the stm32-hotspot GitHub (this one: https://github.com/stm32-hotspot/STM32H7-LwIP-Examples) running on my NUCLEO-H723ZG, but I’m hitting a wall.
The README is actually great and super clear, which is why I’m surprised I can’t get it to work. I’ve built the project and flashed it to the board, and I have it connected directly to my laptop via Ethernet.
The docs say the IP should be 192.168.1.10, but when I try to ping it, I get nothing. I also took a look at the code and it looked like the IP might be set to 192.168.1.1 instead, so I tried pinging that too, still no luck.
Am I missing something basic here? Is it enough to just build and flash the code, or do I need to tweak some jumpers on the Nucleo or change my laptop's manual IP settings to be on the same subnet?
I’d really appreciate it if someone who has used this repo could point me in the right direction.
Thanks!
mpek29
2026-01-16 11:11 PM
STM32 is not for end users - it is for programmers ! and so are examples.
Learn how to look at global variables in real time and you will see what is your ip.
But this will not solve your problem - usually demo requires a network with a DHCP server to enable ethernet - again you must be able to understand code inside.
Also your pc must be in the same subnet, and pc did stop to work on static ip unless you can work on low level configuration.
Ever heard of Wireshark to monitor ethernet packets? It is a vital tool for troubleshooting iot.
LwIP is an unreliable library -in my experience - and I dropped a couple of years ago - see my old post.