1 /* 2 * Copyright (c) 2006-2022, RT-Thread Development Team 3 * 4 * SPDX-License-Identifier: Apache-2.0 5 * 6 * Change Logs: 7 * Date Author Notes 8 * 2017-08-24 chinesebear first version 9 */ 10 11 #ifndef __DEBUG_H__ 12 #define __DEBUG_H__ 13 14 //#define GMAC_DEBUG 15 #include <rtthread.h> 16 #ifdef GMAC_DEBUG 17 #define DEBUG_MES rt_kprintf 18 #else 19 #define DEBUG_MES(...) 20 #endif 21 22 #endif /*__DEBUG_H__*/ 23