Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Fork of PN532 by
Diff: debug.h
- Revision:
- 0:9c6b9280c0e1
- Child:
- 1:b8cab5222fd0
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/debug.h Tue Oct 08 08:33:22 2013 +0000 @@ -0,0 +1,17 @@ +#ifndef __DEBUG_H__ +#define __DEBUG_H__ + +//#define DEBUG + +#ifdef DEBUG + +#include <stdio.h> + +#define DMSG(str) printf("%s\r\n", str) +#define DMSG_HEX(n) printf("%2X ", n) +#else +#define DMSG(str) +#define DMSG_HEX(n) +#endif + +#endif