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
debug.h
- Committer:
- yihui
- Date:
- 2013-10-08
- Revision:
- 0:9c6b9280c0e1
- Child:
- 1:b8cab5222fd0
File content as of revision 0:9c6b9280c0e1:
#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