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.
Dependents: DISCO-L072CZ-LRWAN1_LoRa_node EIoT_LoRa_node_1 EIoT_LoRa_node_2 EIoT_LoRa_node_3
Fork of SX1276GenericLib by
Diff: Arduino-mbed-APIs/arduino-util.cpp
- Revision:
- 81:d288917af0ce
- Parent:
- 79:8ae448a3c1fd
- Child:
- 91:55971936cee4
--- a/Arduino-mbed-APIs/arduino-util.cpp Thu Aug 03 13:43:35 2017 +0200
+++ b/Arduino-mbed-APIs/arduino-util.cpp Sat Aug 05 16:08:26 2017 +0200
@@ -23,9 +23,7 @@
int s = secs % 60;
int m = secs / 60;
int h = secs / 3600;
- int us = us_getTicker();
- while(us > 999999)
- us /= 10; // get it to 6 digits only
+ int us = us_getTicker() % 1000000;
snprintf(tmpbuf, sizeof(tmpbuf)-1, "%02d:%02d:%02d.%.06d ", h, m, s, us);
ser->write(tmpbuf, (int) sizeof "00:00:34.3436868 " -1);
