2020-09-04 09:38:01 +08:00
|
|
|
/*
|
2022-06-22 13:41:06 +08:00
|
|
|
* Copyright (c) 2006-2022, RT-Thread Development Team
|
2020-09-04 09:38:01 +08:00
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
|
|
*
|
|
|
|
* Change Logs:
|
|
|
|
* Date Author Notes
|
|
|
|
* 2017-08-24 chinesebear first version
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __DEBUG_H__
|
|
|
|
#define __DEBUG_H__
|
|
|
|
|
|
|
|
//#define GMAC_DEBUG
|
|
|
|
#include <rtthread.h>
|
2022-06-22 13:41:06 +08:00
|
|
|
#ifdef GMAC_DEBUG
|
2020-09-04 09:38:01 +08:00
|
|
|
#define DEBUG_MES rt_kprintf
|
|
|
|
#else
|
|
|
|
#define DEBUG_MES(...)
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif /*__DEBUG_H__*/
|