Search found 1 match
- Wed Jan 20, 2021 2:55 pm
- Forum: ESP32 Arduino
- Topic: "etharp_request" workaround does not work anymore
- Replies: 1
- Views: 3460
Re: "etharp_request" workaround does not work anymore
I know that is very VERY old topic, but it looks that is till applicable. I got around the issue with the following code: extern "C" { #include "lwip/netif.h" uint8_t etharp_request(char *, char *); // required for forceArp to work } void forceARP() { netif *netif = netif_list; while (netif) { if(ne...