LwIP 2.2.1在STM32F407VET6平台 移植

This commit is contained in:
冯佳
2026-01-29 17:26:04 +08:00
parent ffd33c4644
commit e7e10a8328
2207 changed files with 409723 additions and 165 deletions

19
ThirdParty/lwip-2.2.1/port/ethernetif.h vendored Normal file
View 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 */