waveshareteam-e-Paper/STM32/STM32-F103ZET6/User/Config/Debug.h
hnwangkg-ezio 1f82e4a488 2019.06.24
2019-06-24 17:11:43 +08:00

24 lines
648 B
C

/*****************************************************************************
* | File : Debug.h
* | Author : Waveshare team
* | Function : debug with printf
* | Info :
* Image scanning
* Please use progressive scanning to generate images or fonts
*----------------
* | This version: V1.0
* | Date : 2018-01-11
* | Info : Basic version
*
******************************************************************************/
#ifndef __DEBUG_H
#define __DEBUG_H
#define DEBUG 1
#if DEBUG
#define Debug(__info,...) printf("Debug: " __info,##__VA_ARGS__)
#else
#define Debug(__info,...)
#endif
#endif