20 lines
423 B
C
20 lines
423 B
C
/*
|
|
* ethernetif.h - STM32F407VET6 平台的 LwIP 以太网接口头文件
|
|
*/
|
|
|
|
#ifndef ETHERNETIF_H
|
|
#define ETHERNETIF_H
|
|
|
|
#include "lwip/netif.h"
|
|
|
|
/* 以太网接口初始化函数 */
|
|
void ethernetif_init(struct netif *netif);
|
|
|
|
/* 以太网接口输入处理函数 */
|
|
void ethernetif_input(void *arg);
|
|
|
|
/* 以太网接口状态更新函数 */
|
|
void ethernetif_update_status(struct netif *netif);
|
|
|
|
#endif /* ETHERNETIF_H */
|