This library is deprecated.

Dependents:   HTTPServerExample HTTPServerHelloWorld PoorMansScope Lab3 ... more

Files at this revision

API Documentation at this revision

Comitter:
donatien
Date:
Fri Jul 09 14:45:18 2010 +0000
Parent:
4:3fe9df8782b1
Child:
6:d753966e4d97
Commit message:

Changed in this revision

LPC1768/HTTPServer.ar Show annotated file Show diff for this revision Revisions of this file
LPC1768/dbg/dbg.h Show annotated file Show diff for this revision Revisions of this file
LPC2368/HTTPServer.ar Show annotated file Show diff for this revision Revisions of this file
LPC2368/dbg/dbg.h Show annotated file Show diff for this revision Revisions of this file
Binary file LPC1768/HTTPServer.ar has changed
--- a/LPC1768/dbg/dbg.h	Fri Jun 18 09:47:59 2010 +0000
+++ b/LPC1768/dbg/dbg.h	Fri Jul 09 14:45:18 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
Binary file LPC2368/HTTPServer.ar has changed
--- a/LPC2368/dbg/dbg.h	Fri Jun 18 09:47:59 2010 +0000
+++ b/LPC2368/dbg/dbg.h	Fri Jul 09 14:45:18 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