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.
Dependencies: DMX DmxArtNet EthernetNetIf mbed
Fork of ArtNode by
Diff: dbg.h
- Revision:
- 0:e3d0bc58141e
- Child:
- 1:6ea5c460fdf2
diff -r 000000000000 -r e3d0bc58141e dbg.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/dbg.h Thu Oct 06 04:13:35 2011 +0000 @@ -0,0 +1,7 @@ +#define DEBUG + +#ifdef DEBUG +#define DBG(...) printf("dbg:" __VA_ARGS__) +#else +#define DBG(...) +#endif