LwIP 2.2.1在STM32F407VET6平台 移植
This commit is contained in:
19
ThirdParty/lwip-2.2.1/port/ethernetif.h
vendored
Normal file
19
ThirdParty/lwip-2.2.1/port/ethernetif.h
vendored
Normal file
@ -0,0 +1,19 @@
|
||||
/*
|
||||
* 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 */
|
||||
Reference in New Issue
Block a user