PN532 NFC library for Seeed Studio's NFC Shield

Fork of PN532 by Yihui Xiong

debug.h

Committer:
yihui
Date:
2013-10-17
Revision:
1:b8cab5222fd0
Parent:
0:9c6b9280c0e1

File content as of revision 1:b8cab5222fd0:

#ifndef __DEBUG_H__
#define __DEBUG_H__

//#define DEBUG

#ifdef DEBUG

#include <stdio.h>

#define DMSG(args...)   printf(args)
#define DMSG_STR(str)   printf("%s\n", str)
#define DMSG_INT(num)   printf("%d\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__