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.
Dependencies: net lpc1768 crypto clock web log
Diff: gps/nmea/nmea-time-bucket.c
- Revision:
- 48:9f1ab7784067
- Parent:
- 35:a535b65203a9
--- a/gps/nmea/nmea-time-bucket.c Tue Mar 26 20:22:26 2019 +0000
+++ b/gps/nmea/nmea-time-bucket.c Wed Mar 27 18:40:21 2019 +0000
@@ -17,6 +17,14 @@
bucketEnumerateIndex++;
return true;
}
+int NmeaTimeBucketGetSize()
+{
+ return BUCKET_COUNT;
+}
+uint32_t NmeaTimeBucketGetItem(int item)
+{
+ return buckets[item];
+}
void NmeaTimeBucketAdd(int nmeaStartMs)
{
int bucket = nmeaStartMs * BUCKET_COUNT / 1000;