1 /* 2 * Copyright (c) 2006-2021, RT-Thread Development Team 3 * 4 * SPDX-License-Identifier: Apache-2.0 5 * 6 * Change Logs: 7 * Date Author Notes 8 * 2018-10-12 armink 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 "at" 17 #else 18 #define DBG_TAG LOG_TAG 19 #endif /* LOG_TAG */ 20 21 #ifdef AT_DEBUG 22 #define DBG_LVL DBG_LOG 23 #else 24 #define DBG_LVL DBG_INFO 25 #endif /* AT_DEBUG */ 26 27 #include <rtdbg.h> 28