summaryrefslogtreecommitdiff
path: root/driver_navcom.c
diff options
context:
space:
mode:
authorEric S. Raymond <esr@thyrsus.com>2010-04-26 22:28:56 -0400
committerEric S. Raymond <esr@thyrsus.com>2010-04-26 22:28:56 -0400
commit0c0e13106e6b655498b6351f66799d8101486195 (patch)
tree9e86297f541a39a0b9d4df33f750ee498e17eac7 /driver_navcom.c
parentb31ea3f7b9c084f8f15f79214117e62683e360d9 (diff)
downloadgpsd-0c0e13106e6b655498b6351f66799d8101486195.tar.gz
FIXME -> FIX-ME, so I can walk through these without tripping over autotools.
Diffstat (limited to 'driver_navcom.c')
-rw-r--r--driver_navcom.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/driver_navcom.c b/driver_navcom.c
index a4d8f814..1bcdb076 100644
--- a/driver_navcom.c
+++ b/driver_navcom.c
@@ -203,7 +203,7 @@ static void navcom_event_hook(struct gps_device_t *session, event_t event)
}
/* Request the following messages: */
/*
- * FIXME: It might not be necessary to call this on reactivate.
+ * FIX-ME: It might not be necessary to call this on reactivate.
* Experiment to see if the holds its settings through a close.
*/
if (event == event_identified || event == event_reactivate) {
@@ -494,7 +494,7 @@ static gps_mask_t handle_0xb1(struct gps_device_t *session)
eph = fom / 100.0 * 1.96;
/* approximate epx and epy errors from it */
session->newdata.epx = session->newdata.epy = eph / sqrt(2);
- /* FIXME - Which units is tfom in (spec doesn't say) */
+ /* FIX-ME - Which units is tfom in (spec doesn't say) */
session->newdata.ept = tfom * 1.96 /*Two sigma */ ;
if (gdop != DOP_UNDEFINED)