debug.h 230 B

1234567891011121314151617
  1. /*
  2. * Copyright (C) chinesebear
  3. */
  4. #ifndef __DEBUG_H__
  5. #define __DEBUG_H__
  6. //#define GMAC_DEBUG
  7. #include <rtthread.h>
  8. #ifdef GMAC_DEBUG
  9. #define DEBUG_MES rt_kprintf
  10. #else
  11. #define DEBUG_MES(...)
  12. #endif
  13. #endif /*__DEBUG_H__*/