Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Fork of DHT by
Revision 1:f7551b7727db, committed 2017-11-07
- Comitter:
- LBradJob
- Date:
- Tue Nov 07 21:31:28 2017 +0000
- Parent:
- 0:9b5b3200688f
- Commit message:
- commented out time limitations. Had trouble when starting up
Changed in this revision
DHT.cpp | Show annotated file Show diff for this revision Revisions of this file |
diff -r 9b5b3200688f -r f7551b7727db DHT.cpp --- a/DHT.cpp Mon Jul 09 19:47:43 2012 +0000 +++ b/DHT.cpp Tue Nov 07 21:31:28 2017 +0000 @@ -56,7 +56,7 @@ bitTimes[i] = 0; } - if (!_firsttime) { + /*if (!_firsttime) { if (int(currentTime - _lastReadTime) < 2) { err = ERROR_NO_PATIENCE; return err; @@ -64,7 +64,7 @@ } else { _firsttime=false; _lastReadTime=currentTime; - } + }*/ retryCount = 0; do { @@ -141,6 +141,7 @@ } else { err = ERROR_CHECKSUM; + _lastReadTime = currentTime; } return err;