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 
12 #ifndef __DEBUG_H__
13 #define __DEBUG_H__
14 
15 //#define GMAC_DEBUG
16 #include <rtthread.h>
17 #ifdef GMAC_DEBUG
18 #define DEBUG_MES   rt_kprintf
19 #else
20 #define DEBUG_MES(...)
21 #endif
22 
23 #endif /*__DEBUG_H__*/
24