HTTP Client library

Dependents:   weather_LCD_display News_LCD_display TwitterExample_1 GeoLocation_LCD_Display ... more

Revision:
4:76ca2a4fa528
Parent:
1:ffc6159cc5d5
Child:
5:d0be6af2d1db
--- a/LPC1768/dbg/dbg.h	Fri Jun 18 10:29:23 2010 +0000
+++ b/LPC1768/dbg/dbg.h	Fri Jul 09 14:35:21 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