fix: 对不支持weak的bsp, luat_http_client_onevent报重复定义了
[LuatOS.git] / components / epaper / Debug.h
blob22b4e78a6f0114c57c0fa594dc17591380c1f455
1 /*****************************************************************************
2 * | File : Debug.h
3 * | Author : Waveshare team
4 * | Function : debug with printf
5 * | Info :
6 * Image scanning
7 * Please use progressive scanning to generate images or fonts
8 *----------------
9 * | This version: V1.0
10 * | Date : 2018-01-11
11 * | Info : Basic version
13 ******************************************************************************/
14 #ifndef __DEBUG_H
15 #define __DEBUG_H
17 #ifndef LUAT_LOG
18 #define LUAT_LOG_TAG "eink"
19 #include "luat_log.h"
20 #endif
22 #define DEBUG 1
23 #if DEBUG
24 #define Debug LLOGD
25 #else
26 #define Debug(__info,...)
27 #endif
29 #endif