From 4a6b39d61494ce8ff89728287791f38f84e9719c Mon Sep 17 00:00:00 2001 From: "Gary E. Miller" Date: Wed, 24 Oct 2018 18:36:46 -0700 Subject: driver_superstar2: Do not report raw data decode. The decoded data does not look correct. --- driver_superstar2.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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; } -- cgit v1.2.1