summaryrefslogtreecommitdiff
path: root/drivers.c
diff options
context:
space:
mode:
authorEric S. Raymond <esr@thyrsus.com>2013-05-21 10:59:54 -0400
committerEric S. Raymond <esr@thyrsus.com>2013-05-21 10:59:54 -0400
commit8bd9db1c8daa8675de5ee929e2004912b5d474a2 (patch)
tree765ed548893d6825beaf0238a1825e665f620d22 /drivers.c
parentd856d6246ace7a2f9014a2d2e57d3431194c6d7b (diff)
downloadgpsd-8bd9db1c8daa8675de5ee929e2004912b5d474a2.tar.gz
Disable attempts to parse Evermore binary packets.
This codse is no longer needed; we just let these devices run in NMEA mode now.
Diffstat (limited to 'drivers.c')
-rw-r--r--drivers.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers.c b/drivers.c
index 9d350812..15c76033 100644
--- a/drivers.c
+++ b/drivers.c
@@ -191,10 +191,10 @@ static void nmea_event_hook(struct gps_device_t *session, event_t event)
#ifdef EVERMORE_ENABLE
case 4:
gpsd_report(LOG_PROG, "=> Probing for Evermore\n");
- /* Enable checksum and GGA(1s), GLL(0s), GSA(1s), GSV(1s), RMC(1s), VTG(0s), PEMT101(1s) */
+ /* Enable checksum and GGA(1s), GLL(0s), GSA(1s), GSV(1s), RMC(1s), VTG(0s), PEMT101(0s) */
/* EverMore will reply with: \x10\x02\x04\x38\x8E\xC6\x10\x03 */
(void)gpsd_write(session,
- "\x10\x02\x12\x8E\x7F\x01\x01\x00\x01\x01\x01\x00\x01\x00\x00\x00\x00\x00\x00\x13\x10\x03",
+ "\x10\x02\x12\x8E\x7F\x01\x01\x00\x01\x01\x01\x00\x00\x00\x00\x00\x00\x00\x00\x13\x10\x03",
22);
break;
#endif /* EVERMORE_ENABLE */