cc3000 hostdriver with the mbed socket interface

Dependents:   cc3000_hello_world_demo cc3000_simple_socket_demo cc3000_ntp_demo cc3000_ping_demo ... more

Files at this revision

API Documentation at this revision

Comitter:
Kojto
Date:
Tue Oct 01 04:41:47 2013 +0000
Parent:
9:4d12b82bc767
Child:
11:5e3771b29385
Commit message:
sendTo (select commented out)

Changed in this revision

Socket/UDPSocket.cpp Show annotated file Show diff for this revision Revisions of this file
--- a/Socket/UDPSocket.cpp	Tue Oct 01 04:31:56 2013 +0000
+++ b/Socket/UDPSocket.cpp	Tue Oct 01 04:41:47 2013 +0000
@@ -59,15 +59,15 @@
         return -1;
     }
 
-    if (!_blocking) {
-        TimeInterval timeout(_timeout);
-        if (wait_writable(timeout) != 0) {
-#if (CC3000_DEBUG == 1)
-            printf("DEBUG: The socket is not writeable. _sock_fd: %d.\n", _sock_fd);
-#endif
-            return 0;
-        }
-    }
+//    if (!_blocking) {
+//        TimeInterval timeout(_timeout);
+//        if (wait_writable(timeout) != 0) {
+//#if (CC3000_DEBUG == 1)
+//            printf("DEBUG: The socket is not writeable. _sock_fd: %d.\n", _sock_fd);
+//#endif
+//            return 0;
+//        }
+//    }
 
     return _cc3000_module->_socket.sendto(_sock_fd, packet, length, 0, (sockaddr *)&remote._remote_host, sizeof(sockaddr));
 }