PN532 NFC library for Seeed Studio's NFC Shield

Fork of PN532 by Yihui Xiong

PN532_debug.h

Committer:
r4z0r7o3
Date:
2015-02-04
Revision:
9:85bfede025da
Parent:
5:51f820fbd18a

File content as of revision 9:85bfede025da:

#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__