gpsd-dev
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[gpsd-dev] [PATCH 7/7] gpsmon: unconditionally log the PPS reports to th


From: Beat Bolli
Subject: [gpsd-dev] [PATCH 7/7] gpsmon: unconditionally log the PPS reports to the packet window.
Date: Sat, 2 Nov 2013 18:50:05 +0100

Signed-off-by: Beat Bolli <address@hidden>
---
 gpsmon.c | 9 ++++++---
 1 file changed, 6 insertions(+), 3 deletions(-)

diff --git a/gpsmon.c b/gpsmon.c
index 09ee07c..b9e6230 100644
--- a/gpsmon.c
+++ b/gpsmon.c
@@ -840,9 +840,12 @@ static void gpsmon_hook(struct gps_device_t *device, 
gps_mask_t changed UNUSED)
  * needed to keep the PPS thread running.
  */
 static char *pps_report(struct gps_device_t *session UNUSED,
-                       struct timeval *actual_tv UNUSED,
-                       struct timespec *ts UNUSED,
-                       double edge_offset UNUSED) {
+                       struct timeval *actual_tv,
+                       struct timespec *ts,
+                       double edge_offset) {
+    packet_log("PPS time=%llu.%09lu; clock=%llu.%09lu; edge_offset=%.9f\n",
+              (long long)actual_tv->tv_sec, actual_tv->tv_usec * 1000,
+              (long long)ts->tv_sec, ts->tv_nsec, edge_offset);
     return "gpsmon";
 }
 #endif /* PPS_ENABLE */
-- 
1.8.4.rc3




reply via email to

[Prev in Thread] Current Thread [Next in Thread]