1 /*
2  * Copyright (c) 2006-2024 RT-Thread Development Team
3  *
4  * SPDX-License-Identifier: Apache-2.0
5  *
6  * Change Logs:
7  * Date           Author       Notes
8  * 2022-03-21     shelton      first version
9  */
10 
11 /*
12  * NOTE: DO NOT include this file on the header file.
13  */
14 
15 #ifndef LOG_TAG
16 #define DBG_TAG                         "drv"
17 #else
18 #define DBG_TAG                         LOG_TAG
19 #endif /* LOG_TAG */
20 
21 #ifdef DRV_DEBUG
22 #define DBG_LVL                         DBG_LOG
23 #else
24 #define DBG_LVL                         DBG_INFO
25 #endif /* DRV_DEBUG */
26 
27 #include <rtdbg.h>
28