mirror of
https://github.com/RT-Thread/rt-thread.git
synced 2025-01-19 01:23:31 +08:00
26 lines
391 B
C
26 lines
391 B
C
|
/*
|
||
|
* Copyright (c) 2006-2021, RT-Thread Development Team
|
||
|
*
|
||
|
* SPDX-License-Identifier: Apache-2.0
|
||
|
*
|
||
|
* Change Logs:
|
||
|
* Date Author Notes
|
||
|
* 2021-03-09 Carl the first version
|
||
|
*/
|
||
|
#ifndef __DRV_ETH_H__
|
||
|
#define __DRV_ETH_H__
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
extern "C"
|
||
|
{
|
||
|
#endif
|
||
|
|
||
|
#define FT_NETIF_LINKUP 0x1U
|
||
|
#define FT_NETIF_DOWN 0x2U
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
}
|
||
|
#endif
|
||
|
|
||
|
#endif // !
|