Files
coder_stm32f1/source/lwip-1.4.1/port/STM32F4x7/Standalone/ethernetif.h
2023-06-10 11:52:00 +08:00

12 lines
196 B
C

#ifndef __ETHERNETIF_H__
#define __ETHERNETIF_H__
#include "lwip/err.h"
#include "lwip/netif.h"
err_t ethernetif_init(struct netif *netif);
err_t ethernetif_input(struct netif *netif);
#endif