Generic library for working with PN532-like chips

Fork of PN532 by Seeed

PN532_debug.h

Committer:
icefeet
Date:
2014-10-07
Revision:
5:51f820fbd18a
Parent:
3:4189a10038e6
Child:
10:f959b305a571

File content as of revision 5:51f820fbd18a:

#ifndef __DEBUG_H__
#define __DEBUG_H__

//#define DEBUG

#ifdef DEBUG

#include <stdio.h>

#define DMSG(args...)   printf(args)
#define DMSG_STR(str)   printf("%s\r\n", str)
#define DMSG_INT(num)   printf("%d\r\n", num)
#define DMSG_HEX(num)   printf("%2X ", num)

#else

#define DMSG(args...)
#define DMSG_STR(str)
#define DMSG_INT(num)
#define DMSG_HEX(num)

#endif  // DEBUG

#endif  // __DEBUG_H__