2022-03-04 12:44 AM
Hello ST community,
So I am working on this project using STM32F746G-DISCOVERY KIT and I want to have full control of the network stack behavior. For example when I send ping from the PC to the STM I don't want to receive an automatic pong.
Thank you.
2022-03-04 01:15 AM
Hello,
As far as I remember, Ping is part of ICMP protocol.
If you're using LWIP, there is that line in the lwipopts.h:
#define LWIP_ICMP 1
I would try to set it to 0.
That's just a guess, never tried.
2022-03-04 01:17 AM
Thank you, I will try it