synopGMAC_debug.h 400 B

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