summaryrefslogtreecommitdiff
path: root/driver_ubx.c
diff options
context:
space:
mode:
authorGary E. Miller <gem@rellim.com>2019-04-22 19:40:25 -0700
committerGary E. Miller <gem@rellim.com>2019-04-22 19:40:25 -0700
commitbe8b170d30835954e9e1a8e4a515a36b2918f552 (patch)
tree1a92374dde63b868823e3bc470586376da0d426e /driver_ubx.c
parente07761dfbc02681e31ce592d0188529cace1ba3d (diff)
downloadgpsd-be8b170d30835954e9e1a8e4a515a36b2918f552.tar.gz
driver_ubx: Improve comment on UBX-NAV-EOE
Diffstat (limited to 'driver_ubx.c')
-rw-r--r--driver_ubx.c7
1 files changed, 1 insertions, 6 deletions
diff --git a/driver_ubx.c b/driver_ubx.c
index 49c193c4..fbb8efee 100644
--- a/driver_ubx.c
+++ b/driver_ubx.c
@@ -636,12 +636,7 @@ ubx_msg_nav_eoe(struct gps_device_t *session, unsigned char *buf,
session->driver.ubx.iTOW = getles32(buf, 0);
gpsd_log(&session->context->errout, LOG_DATA, "EOE: iTOW=%lld\n",
(long long)session->driver.ubx.iTOW);
- /* nothing really to new, but report data collected so far
- * and clear for next data set */
- /* return CLEAR_IS | REPORT_IS;
- * return REPORT_IS | STATUS_SET;
- * return REPORT_IS;
- * strangely any mask return here makes things worse... */
+ /* nothing to report, but the iTOW for cycle ender is good */
return 0;
}