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 Oct 27 14:16:03 2014 -0700
Parent:
31:59fac148a8d5
Child:
33:9b690d76eedf
Child:
34:2616445d0823
Commit message:
build fixes

Changed in this revision

GhmMessageProcessing.cpp Show annotated file Show diff for this revision Revisions of this file
Socket.cpp Show annotated file Show diff for this revision Revisions of this file
TCPSocketConnection.cpp Show annotated file Show diff for this revision Revisions of this file
TCPSocketServer.cpp Show annotated file Show diff for this revision Revisions of this file
UDPSocket.cpp Show annotated file Show diff for this revision Revisions of this file
api/types/Socket/Socket.h Show annotated file Show diff for this revision Revisions of this file
api/types/WiconnectUdpServer.h Show annotated file Show diff for this revision Revisions of this file
common.cpp Show annotated file Show diff for this revision Revisions of this file
--- a/GhmMessageProcessing.cpp	Mon Oct 27 13:52:55 2014 -0700
+++ b/GhmMessageProcessing.cpp	Mon Oct 27 14:16:03 2014 -0700
@@ -173,7 +173,6 @@
 WiconnectResult GhmInterface::ghmListMessages(GhmMessageList &msgList, uint8_t maxCount)
 {
     WiconnectResult result;
-    int32_t handle;
     char *cmdBuffer = wiconnect->internalBuffer;
 
     if(WICONNECT_IS_IDLE())
--- a/Socket.cpp	Mon Oct 27 13:52:55 2014 -0700
+++ b/Socket.cpp	Mon Oct 27 14:16:03 2014 -0700
@@ -27,9 +27,9 @@
  * OF SUCH DAMAGE.
  */
 
-
+#include "Wiconnect.h"
 #include "api/types/Socket/Socket.h"
-#include "common.h"
+
 
 
 
--- a/TCPSocketConnection.cpp	Mon Oct 27 13:52:55 2014 -0700
+++ b/TCPSocketConnection.cpp	Mon Oct 27 14:16:03 2014 -0700
@@ -27,9 +27,8 @@
  * OF SUCH DAMAGE.
  */
 
-
+#include "Wiconnect.h"
 #include "api/types/Socket/TCPSocketConnection.h"
-#include "common.h"
 
 
 
--- a/TCPSocketServer.cpp	Mon Oct 27 13:52:55 2014 -0700
+++ b/TCPSocketServer.cpp	Mon Oct 27 14:16:03 2014 -0700
@@ -27,8 +27,9 @@
  * OF SUCH DAMAGE.
  */
 
+#include "Wiconnect.h"
 #include "api/types/Socket/TCPSocketServer.h"
-#include "common.h"
+
 
 
 /*************************************************************************************************/
--- a/UDPSocket.cpp	Mon Oct 27 13:52:55 2014 -0700
+++ b/UDPSocket.cpp	Mon Oct 27 14:16:03 2014 -0700
@@ -27,9 +27,9 @@
  * OF SUCH DAMAGE.
  */
 
-
+#include "Wiconnect.h"
 #include "api/types/Socket/UDPSocket.h"
-#include "common.h"
+
 
 
 /*************************************************************************************************/
--- a/api/types/Socket/Socket.h	Mon Oct 27 13:52:55 2014 -0700
+++ b/api/types/Socket/Socket.h	Mon Oct 27 14:16:03 2014 -0700
@@ -21,13 +21,11 @@
 
 #include "api/types/Socket/lwip/sockets.h"
 #include "api/types/Socket/lwip/netdb.h"
-#include "api/WiconnectTypes.h"
+
 #include "api/types/WiconnectSocket.h"
 
-
 using namespace wiconnect;
 
-
 #define SOCKET_API_DEFAULT_RX_BUFFER_SIZE 128
 #define SOCKET_API_DEFAULT_TX_BUFFER_SIZE 128
 
--- a/api/types/WiconnectUdpServer.h	Mon Oct 27 13:52:55 2014 -0700
+++ b/api/types/WiconnectUdpServer.h	Mon Oct 27 14:16:03 2014 -0700
@@ -50,7 +50,7 @@
     WiconnectResult setRemoteClient(const char* host, uint16_t port);
     WiconnectResult setRemoteClient(uint32_t ip, uint16_t port);
 
-    WiconnectResult flushTxBuffer();
+    virtual WiconnectResult flushTxBuffer();
 
 };
 
--- a/common.cpp	Mon Oct 27 13:52:55 2014 -0700
+++ b/common.cpp	Mon Oct 27 14:16:03 2014 -0700
@@ -9,9 +9,9 @@
  */
 
 
-
+#include "Wiconnect.h"
 #include "api/types/Socket/Socket.h"
-#include "common.h"
+
 
 
 /*************************************************************************************************/