ethernetif.h

来自「RT-Thread是发展中的下一代微内核嵌入式实时操作系统」· C头文件 代码 · 共 28 行

H
28
字号
#ifndef __NETIF_ETHERNETIF_H__
#define __NETIF_ETHERNETIF_H__

#include "lwip/netif.h"
#include <rtthread.h>

#define NIOCTL_GADDR		0x01
#define ETHERNET_MTU		1500

struct eth_device
{
	/* inherit from rt_device */
	struct rt_device parent;

	struct eth_addr *ethaddr;
	struct netif *netif;
	/* eth device interface */
	struct pbuf* (*eth_rx)(rt_device_t dev);
	rt_err_t (*eth_tx)(rt_device_t dev, struct pbuf* p);
};

rt_err_t eth_system_device_init();
rt_err_t eth_device_ready(struct eth_device* dev);

rt_err_t eth_device_init(struct eth_device* dev, const char* name);

#endif /* __NETIF_ETHERNETIF_H__ */

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?