Revision:
2:1f10f8ab527b
Parent:
0:0f5a52711275
Child:
3:e02ec42cf9c8
--- a/LPC1768/dbg/dbg.h	Mon Jul 19 16:27:52 2010 +0000
+++ b/LPC1768/dbg/dbg.h	Thu Jul 22 11:31:59 2010 +0000
@@ -48,6 +48,7 @@
 #undef DBG_END
 #undef BREAK
 #define DBG(...) do{ DebugStream::debug("[%s:%s@%d] ", __FILE__, __FUNCTION__, __LINE__); DebugStream::debug(__VA_ARGS__); } while(0);
+#define DBGL(...) do{ DebugStream::debug(__VA_ARGS__); } while(0);
 #define DBG_END DebugStream::release
 #define BREAK() DebugStream::breakPoint(__FILE__, __LINE__)
 #endif