HTTP Client library

Dependents:   weather_LCD_display News_LCD_display TwitterExample_1 GeoLocation_LCD_Display ... more

Files at this revision

API Documentation at this revision

Comitter:
donatien
Date:
Fri Jun 18 09:20:45 2010 +0000
Parent:
0:a828ace1f38d
Child:
2:2d0056555fac
Commit message:

Changed in this revision

LPC1768/HTTPClient.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/HTTPClient.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/HTTPClient.ar has changed
--- a/LPC1768/dbg/dbg.h	Fri Jun 11 16:25:51 2010 +0000
+++ b/LPC1768/dbg/dbg.h	Fri Jun 18 09:20:45 2010 +0000
@@ -39,21 +39,26 @@
 public:
 static void debug(const char* format, ...);
 static void release();
+static void breakPoint(const char* file, int line);
 private:
 
 };
 
 #undef DBG
 #undef DBG_END
+#undef BREAK
 #define DBG DebugStream::debug
 #define DBG_END DebugStream::release
+#define BREAK() DebugStream::breakPoint(__FILE__, __LINE__)
 #endif
 
 #else
 #undef DBG
 #undef DBG_END
+#undef BREAK
 #define DBG(...)
 #define DBG_END()
+#define BREAK()
 #endif
 
 #ifdef __LWIP_DEBUG
Binary file LPC2368/HTTPClient.ar has changed
--- a/LPC2368/dbg/dbg.h	Fri Jun 11 16:25:51 2010 +0000
+++ b/LPC2368/dbg/dbg.h	Fri Jun 18 09:20:45 2010 +0000
@@ -39,21 +39,26 @@
 public:
 static void debug(const char* format, ...);
 static void release();
+static void breakPoint(const char* file, int line);
 private:
 
 };
 
 #undef DBG
 #undef DBG_END
+#undef BREAK
 #define DBG DebugStream::debug
 #define DBG_END DebugStream::release
+#define BREAK() DebugStream::breakPoint(__FILE__, __LINE__)
 #endif
 
 #else
 #undef DBG
 #undef DBG_END
+#undef BREAK
 #define DBG(...)
 #define DBG_END()
+#define BREAK()
 #endif
 
 #ifdef __LWIP_DEBUG