ethernetif.h 239 B

1234567891011
  1. #ifndef __ETHERNETIF_H__
  2. #define __ETHERNETIF_H__
  3. #include "lwip/err.h"
  4. #include "lwip/netif.h"
  5. err_t ethernetif_init(struct netif *netif);
  6. void ethernetif_input( void * pvParameters );
  7. void low_level_init(struct netif *netif);
  8. #endif