Files
luban-lite-t3e-pro/packages/third-party/lwip/contrib/ports/aic/sys/ethernetif.h
刘可亮 724d6bf65e v1.1.2
2025-01-08 19:12:06 +08:00

19 lines
414 B
C

// SPDX-License-Identifier: Apache-2.0
/*
* Copyright (c) 2022-2024, ArtInChip Technology Co., Ltd
*
* SPDX-License-Identifier: Apache-2.0
*/
#ifndef __ARTINCHIP_ETHERNETIF_H__
#define __ARTINCHIP_ETHERNETIF_H__
#include "lwip/err.h"
#include "lwip/netif.h"
err_t ethernetif_init(struct netif *netif);
err_t ethernetif_input(struct netif *netif);
void ethernetif_input_poll(struct netif *netif);
#endif