Files
mkrtos-real/mkrtos_user/server/net/inc/ethernetif.h

11 lines
253 B
C
Raw Normal View History

2024-01-07 23:32:30 +08:00
#ifndef __ETHERNETIF_H__
#define __ETHERNETIF_H__
#include "lwip/err.h"
#include "lwip/netif.h"
2024-01-22 23:17:08 +08:00
#include <u_types.h>
2024-01-07 23:32:30 +08:00
err_t ethernetif_init(struct netif *netif);
2024-01-22 23:17:08 +08:00
err_t ethernetif_input_raw(struct netif *netif, uint8_t *data, int len);
2024-01-07 23:32:30 +08:00
#endif