Missing header files in UDP demo

I’m porting the FreeRTOSPlusUDPandCLIWindowsSimulator project to the LPCXpresso environment. WinPCap/arch.c includes three header files that I can’t find anywhere: * net/uip.h * net/uip_arp.h * net/clock-arch.h TIA

Missing header files in UDP demo

You don’t need WinPCap if you are porting to the LPCXpresso, so you don’t need those header files.

Missing header files in UDP demo

Let me clarify. I’m using LPCXpresso with MinGW to build the Windows simulator, so I apparently do need the WinPCap library. Interestingly, I don’t need arch.c so that took are of the include problem. Finally got everything to compile after a few tweaks, but now gcc complains that it can’t find wpcap.lib. I’ve tried various permutations but nothing seems to work. What am I missing?

Missing header files in UDP demo

Are you using the wpcap.lib file from the FreeRTOS distribution? If so it is probably just for MSVC. You will probably be able to download one for GCC from the wpcap website. Regards.