summaryrefslogtreecommitdiff
path: root/driver_navcom.c
diff options
context:
space:
mode:
authorEric S. Raymond <esr@thyrsus.com>2015-01-10 12:42:48 -0500
committerEric S. Raymond <esr@thyrsus.com>2015-01-10 12:42:48 -0500
commita950067545c52db618154994f76a5659d1be558c (patch)
tree561dedbd8991303a59abea7b14802c6056773ccb /driver_navcom.c
parent7ba55ad09f61c517ac05419152c5240b4a5f078b (diff)
downloadgpsd-a950067545c52db618154994f76a5659d1be558c.tar.gz
The particular Navcom binary protocol we support is called NCT.
All regression tests pass.
Diffstat (limited to 'driver_navcom.c')
-rw-r--r--driver_navcom.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/driver_navcom.c b/driver_navcom.c
index 485573da..8a40fd0b 100644
--- a/driver_navcom.c
+++ b/driver_navcom.c
@@ -1,5 +1,5 @@
/*
- * Driver for Navcom receivers using propietary NCT messages, a binary protocol.
+ * Driver for Navcom receivers using proprietary NCT messages, a binary protocol.
*
* Vendor website: http://www.navcomtech.com/
* Technical references: Technical Reference Manual P/N 96-3120001-3001
@@ -772,7 +772,7 @@ static gps_mask_t handle_0x86(struct gps_device_t *session)
*
* By observation, the satellite is in use if this status is 0xff.
* But errors here are not very serious, all they can affect is
- * the coverance-matrix calculation for error modeling,
+ * the coverance-matrix calculation for error modeling.
*/
stat = getub(buf, n + 1);
log_channel = getub(buf, n + 2);
@@ -1287,7 +1287,7 @@ static bool navcom_speed(struct gps_device_t *session,
/* *INDENT-OFF* */
const struct gps_type_t driver_navcom =
{
- .type_name = "Navcom", /* full name of type */
+ .type_name = "Navcom NCT", /* full name of type */
.packet_type = NAVCOM_PACKET, /* lexer packet type */
.flags = DRIVER_STICKY, /* remember this */
.trigger = NULL, /* none */