ata_debug.h 377 B

1234567891011121314151617181920
  1. /*
  2. * Copyright (c) 2006-2020, RT-Thread Development Team
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. *
  6. * Change Logs:
  7. * Date Author Notes
  8. * 2020-08-19 lizhirui first version
  9. */
  10. #ifndef __ATA_DEBUG_H__
  11. #define __ATA_DEBUG_H__
  12. //#define ATA_DEBUG
  13. #include <rtthread.h>
  14. #ifdef ATA_DEBUG
  15. #define debug rt_kprintf
  16. #else
  17. #define debug(...)
  18. #endif
  19. #endif