2017-08-24 15:03:08 +08:00
|
|
|
/*
|
|
|
|
* Copyright (C) chinesebear
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
2017-08-23 15:46:51 +08:00
|
|
|
#ifndef __DEBUG_H__
|
|
|
|
#define __DEBUG_H__
|
|
|
|
|
|
|
|
//#define GMAC_DEBUG
|
|
|
|
#include <rtthread.h>
|
|
|
|
#ifdef GMAC_DEBUG
|
|
|
|
#define DEBUG_MES rt_kprintf
|
|
|
|
#else
|
|
|
|
#define DEBUG_MES(...)
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif /*__DEBUG_H__*/
|