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 
11 #ifndef __ATA_DEBUG_H__
12 #define __ATA_DEBUG_H__
13 //#define ATA_DEBUG
14 #include <rtthread.h>
15 #ifdef ATA_DEBUG
16 #define debug rt_kprintf
17 #else
18 #define debug(...)
19 #endif
20 #endif
21