1 /* 2 * Copyright (c) 2006-2023, RT-Thread Development Team 3 * 4 * SPDX-License-Identifier: Apache-2.0 5 * 6 * Change Logs: 7 * Date Author Notes 8 * 2023-10-11 zmshahaha move from <rtdef.h> 9 */ 10 11 #ifndef __NET_H__ 12 #define __NET_H__ 13 14 #include <rtdef.h> 15 16 /* net interface device*/ 17 #define RT_DEVICE_CTRL_NETIF_GETMAC (RT_DEVICE_CTRL_BASE(NetIf) + 1) /**< get mac address */ 18 19 #endif /* __NET_H__ */ 20