summaryrefslogtreecommitdiff
path: root/driver_superstar2.c
diff options
context:
space:
mode:
authorGary E. Miller <gem@rellim.com>2018-10-24 18:36:46 -0700
committerGary E. Miller <gem@rellim.com>2018-10-24 18:36:46 -0700
commit4a6b39d61494ce8ff89728287791f38f84e9719c (patch)
tree329d5d54a906d53809bb2f5166cc0545ec51d7eb /driver_superstar2.c
parent62cb4398b5d1b65681b1f84273f308d3202a1db0 (diff)
downloadgpsd-4a6b39d61494ce8ff89728287791f38f84e9719c.tar.gz
driver_superstar2: Do not report raw data decode.
The decoded data does not look correct.
Diffstat (limited to 'driver_superstar2.c')
-rw-r--r--driver_superstar2.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/driver_superstar2.c b/driver_superstar2.c
index 41015002..9ff1cf5e 100644
--- a/driver_superstar2.c
+++ b/driver_superstar2.c
@@ -316,7 +316,8 @@ superstar2_msg_measurement(struct gps_device_t *session, unsigned char *buf,
session->gpsdata.raw[i].pseudorange = (double)(ul >> 12);
}
- mask |= RAW_IS;
+ /*The above decode does not look correct, do not report */
+ /* mask |= RAW_IS; */
return mask;
}