1 /*
2  * Copyright (c) 2006-2021, RT-Thread Development Team
3  *
4  * SPDX-License-Identifier: Apache-2.0
5  *
6  * Change Logs:
7  * Date           Author       Notes
8  * 2021-03-09     Carl        the first version
9  */
10 #ifndef __DRV_ETH_H__
11 #define __DRV_ETH_H__
12 
13 #ifdef __cplusplus
14 extern "C"
15 {
16 #endif
17 
18 #define FT_NETIF_LINKUP 0x1U
19 #define FT_NETIF_DOWN 0x2U
20 
21 #ifdef __cplusplus
22 }
23 #endif
24 
25 #endif // !
26