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 NTPClient_NetServices by
Diff: LPC1768/dbg/dbg.h
- Revision:
- 3:1849420bb9a9
- Parent:
- 1:1f436e56925f
- Child:
- 4:7c3f1199256a
diff -r 88b9b7173dba -r 1849420bb9a9 LPC1768/dbg/dbg.h --- a/LPC1768/dbg/dbg.h Fri Jun 18 09:36:36 2010 +0000 +++ b/LPC1768/dbg/dbg.h Fri Jul 09 14:46:52 2010 +0000 @@ -47,7 +47,7 @@ #undef DBG #undef DBG_END #undef BREAK -#define DBG DebugStream::debug +#define DBG(...) do{ DebugStream::debug("[%s:%s@%d] ", __FILE__, __FUNCTION__, __LINE__); DebugStream::debug(__VA_ARGS__); } while(0); #define DBG_END DebugStream::release #define BREAK() DebugStream::breakPoint(__FILE__, __LINE__) #endif