Skip to content
Snippets Groups Projects
Select Git revision
  • 9cab153acd3754f40a958a3c55fb4b46fa6dba6e
  • master default protected
  • q3k/splitflap
  • q3k/fix-crt
  • q3k/delet-jailbreak
  • q3k/ci-move-to-dockerhub
  • q3k/ci-notify-off-master
  • q3k/fb3
  • q3k/fix-ci
  • q3k/l0dables
  • q3k/fatfs-seek-tell
  • q3k/ci-lint
  • q3k/cube
  • q3k/fb2
  • q3k/copying
  • q3k/ci
  • q3k/nix
  • q3k/binbash
  • rahix/malloc
  • freertos-btle
  • rahix/bhi
21 results

Debug.h

Blame
  • Forked from card10 / firmware
    Source project has a limited visibility.
    Debug.h 704 B
    /*****************************************************************************
    * | File      	:	Debug.h
    * | Author      :   Waveshare team
    * | Function    :	debug with prntf
    * | 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
    
    #include "stdio.h"
    
    #define DEV_DEBUG 1
    #if DEV_DEBUG
    	#define Debug(__info,...) printf("Debug : " __info,##__VA_ARGS__)
    #else
    	#define DEBUG(__info,...)  
    #endif
    
    #endif