Host library for controlling a WiConnect enabled Wi-Fi module.

Dependents:   wiconnect-ota_example wiconnect-web_setup_example wiconnect-test-console wiconnect-tcp_server_example ... more

Files at this revision

API Documentation at this revision

Comitter:
dan_ackme
Date:
Mon Aug 11 03:49:05 2014 -0700
Parent:
3:2dc2592bae5e
Child:
5:8d91a87ebba2
Commit message:
more warning fixes

Changed in this revision

internal/socket/SocketInterface.cpp Show annotated file Show diff for this revision Revisions of this file
types/PinIrqHandler.h Show annotated file Show diff for this revision Revisions of this file
types/WiconnectSerial.h Show annotated file Show diff for this revision Revisions of this file
--- a/internal/socket/SocketInterface.cpp	Mon Aug 11 03:44:25 2014 -0700
+++ b/internal/socket/SocketInterface.cpp	Mon Aug 11 03:49:05 2014 -0700
@@ -148,7 +148,7 @@
 /*************************************************************************************************/
 WiconnectResult SocketInterface::httpGet(Socket &socket, const char *url, bool openOnly, const char *certFilename)
 {
-    const HttpSocketArgs args
+    const HttpSocketArgs args =
     {
         NULL,
         certFilename,
--- a/types/PinIrqHandler.h	Mon Aug 11 03:44:25 2014 -0700
+++ b/types/PinIrqHandler.h	Mon Aug 11 03:49:05 2014 -0700
@@ -23,7 +23,7 @@
 {
 public:
     PinIrqHandler(Pin irqPin, const Callback &callback);
-    ~PinIrqHandler();
+    virtual ~PinIrqHandler();
 
     void irqHandler();
 
--- a/types/WiconnectSerial.h	Mon Aug 11 03:44:25 2014 -0700
+++ b/types/WiconnectSerial.h	Mon Aug 11 03:49:05 2014 -0700
@@ -20,7 +20,7 @@
 {
 public:
     WiconnectSerial(const SerialConfig  &config, Wiconnect *wiconnect = NULL);
-    ~WiconnectSerial();
+    virtual ~WiconnectSerial();
 
     void flush(void);
     int write(const void *data, int bytesToWrite, int timeoutMs);