1 /* Standard includes. */ 2 #include <stdint.h> 3 #include <stdio.h> 4 5 /* FreeRTOS includes. */ 6 #include "FreeRTOS.h" 7 8 /* FreeRTOS+TCP includes. */ 9 #include "FreeRTOS_IP.h" 10 #include "FreeRTOS_ARP.h" 11 12 harness()13void harness() 14 { 15 const MACAddress_t xMACAddress; 16 17 /* The pointer passed to ulARPRemoveCacheEntryByMac cannot be NULL 18 * (see the API definition). */ 19 ulARPRemoveCacheEntryByMac( &xMACAddress ); 20 } 21