Other Parts Discussed in Thread: MSP-EXP432E401Y,
Hello Team,
I'm using the MSP-EXP432E401Y to implement UDP communication between the controller and PC connected via RJ45 to USB connector.
To start with, i used ethernet_with_lwip_nortos_ccs code. This had DHCP to obtain IP address but i need a static IP so I've modified the code for static ip.
uint32_t srcIP = htonl(ipaddr_addr ("192.168.254.4"));
uint32_t NETMASK = htonl((inet_addr("255.255.255.0")));
uint32_t desIP = htonl((inet_addr("192.168.254.3")));
Then while trying to implement the UDP and test, both transmit and receive are not working.
Also ARP request from PC is also not responded from controller.

I tried sending frames from PC with Echotool, printed the same in the terminal i could see the source port, destination port and data length exactly same. But in Wireshark its showing ICMP Destination unreachable error but ARP request and response frames were proper.

Can somebody support in sending and receiving the UDP frames with lwIP in MSP432E401Y controller.
