summaryrefslogtreecommitdiff
path: root/gpsdecode.c
diff options
context:
space:
mode:
authorEric S. Raymond <esr@thyrsus.com>2011-02-23 09:32:13 -0500
committerEric S. Raymond <esr@thyrsus.com>2011-02-23 09:32:13 -0500
commit1efbe513a841f1e732d315d7bbeea04ef959547b (patch)
tree663cc0d3e59d8234536600419536831ef28e2efb /gpsdecode.c
parent8128b19dd6b3f0e20ac9fb96674227622ea625c4 (diff)
downloadgpsd-1efbe513a841f1e732d315d7bbeea04ef959547b.tar.gz
Remove all support for RTCM2 Sager dump format.
Nothing but one regression tests in GPSD used it; that regression test has been rebuilt. All other tests pass. The rtcm-104.xml page now describes the JSON dump format.
Diffstat (limited to 'gpsdecode.c')
-rw-r--r--gpsdecode.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/gpsdecode.c b/gpsdecode.c
index 922287ed..e92e1a2f 100644
--- a/gpsdecode.c
+++ b/gpsdecode.c
@@ -391,11 +391,6 @@ static void decode(FILE * fpin, FILE * fpout)
&session.gpsdata, &policy,
buf, sizeof(buf));
(void)fputs(buf, fpout);
-#ifdef RTCM104V2_ENABLE
- } else if (session.packet.type == RTCM2_PACKET) {
- rtcm2_sager_dump(&session.gpsdata.rtcm2, buf, sizeof(buf));
- (void)fputs(buf, fpout);
-#endif
#ifdef RTCM104V3_ENABLE
} else if (session.packet.type == RTCM3_PACKET) {
rtcm3_dump(&session.gpsdata.rtcm3, fpout);