drv_eth.h 391 B

12345678910111213141516171819202122232425
  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. #ifdef __cplusplus
  13. extern "C"
  14. {
  15. #endif
  16. #define FT_NETIF_LINKUP 0x1U
  17. #define FT_NETIF_DOWN 0x2U
  18. #ifdef __cplusplus
  19. }
  20. #endif
  21. #endif // !