#include "contiki-net.h"
PROCESS(example_packet_driver_process,
"Example packet driver process");
u8_t
example_packet_driver_output(void)
{
let_the_hardware_send_the_packet(uip_buf,
uip_len);
return 0;
}
static void
pollhandler(void)
{
}
}
{
initialize_the_hardware();
tcpip_set_outputfunc(example_packet_driver_output);
shutdown_the_hardware();
}