NTP Client for the mbed networking libraries. The small change to this version is that there can be only one cause for the return value zero.

Dependents:   WattEye

Fork of NTPClient by Donatien Garnier

Files at this revision

API Documentation at this revision

Comitter:
donatien
Date:
Sun Aug 05 16:10:33 2012 +0000
Parent:
2:9a64a50df235
Child:
4:881559865a93
Commit message:
Fixed blocking mode

Changed in this revision

NTPClient.cpp Show annotated file Show diff for this revision Revisions of this file
--- a/NTPClient.cpp	Sun Aug 05 15:36:47 2012 +0000
+++ b/NTPClient.cpp	Sun Aug 05 16:10:33 2012 +0000
@@ -62,7 +62,7 @@
   DBG("Binding socket");
   m_sock.bind(0); //Bind to a random port
   
-  m_sock.set_blocking(true, timeout); //Set blocking
+  m_sock.set_blocking(false, timeout); //Set not blocking
 
   struct NTPPacket pkt;