Dependents:   SimpleLCDClock readCard2Twitter_http AnalogClock_StepperMotor_NTP ServoCamV1

Files at this revision

API Documentation at this revision

Comitter:
donatien
Date:
Wed May 26 16:28:17 2010 +0000
Parent:
4:4fa18943de63
Child:
6:91bbd5fecfe9
Commit message:

Changed in this revision

netCfg.h Show annotated file Show diff for this revision Revisions of this file
services.ar Show annotated file Show diff for this revision Revisions of this file
services/http/client/HttpClient.h Show annotated file Show diff for this revision Revisions of this file
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/netCfg.h	Wed May 26 16:28:17 2010 +0000
@@ -0,0 +1,12 @@
+#ifndef NET_CFG_H
+#define NET_TELIT_STACK 0
+#define NET_GPRS 0
+#define NET_PPP 0
+#define NET_ZG2100 0
+#define NET_ETH 0
+#define NET_USB_SERIAL 0
+#define NET_TELIT 0
+#define NET_CFG_H 1
+#define NET_USB 0
+#define NET_LWIP_STACK 0
+#endif
Binary file services.ar has changed
--- a/services/http/client/HttpClient.h	Wed May 26 14:27:09 2010 +0000
+++ b/services/http/client/HttpClient.h	Wed May 26 16:28:17 2010 +0000
@@ -69,7 +69,6 @@
   HttpResult get(const char* uri, HttpData* pDataIn); //Blocking
   HttpResult get(const char* uri, HttpData* pDataIn, void (*pMethod)(HttpResult)); //Non blocking
   template<class T> 
-  //Linker bug : Must be defined here :(
   HttpResult get(const char* uri, HttpData* pDataIn, T* pItem, void (T::*pMethod)(HttpResult)) //Non blocking
   {
     setOnResult(pItem, pMethod);
@@ -80,7 +79,6 @@
   HttpResult post(const char* uri, const HttpData& dataOut, HttpData* pDataIn); //Blocking
   HttpResult post(const char* uri, const HttpData& dataOut, HttpData* pDataIn, void (*pMethod)(HttpResult)); //Non blocking
   template<class T> 
-  //Linker bug : Must be defined here :(
   HttpResult post(const char* uri, const HttpData& dataOut, HttpData* pDataIn, T* pItem, void (T::*pMethod)(HttpResult)) //Non blocking  
   {
     setOnResult(pItem, pMethod);