summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGary E. Miller <gem@rellim.com>2005-08-19 06:54:50 +0000
committerGary E. Miller <gem@rellim.com>2005-08-19 06:54:50 +0000
commita44b9ae9bb504c209f745c228ebaeb82f14988fe (patch)
treee64c4205a370ae0249bdac43fc7010d9d4ff8219
parent52ed9aa6d63e8ab37841011d42668a05139c3a6b (diff)
downloadgpsd-a44b9ae9bb504c209f745c228ebaeb82f14988fe.tar.gz
Garmin driver should not hide the WAAS satellite. The other drivers do not.
-rw-r--r--garmin.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/garmin.c b/garmin.c
index e89a5617..d8c50dbb 100644
--- a/garmin.c
+++ b/garmin.c
@@ -417,9 +417,7 @@ static gps_mask_t PrintPacket(struct gps_device_t *session, Packet_t *pkt)
, sats->azmth
, sats->status);
- // busted??
-// FIXME!! need to elimate sats over 32
- if ( (32 < (int)sats->svid) || (0 == (int)sats->svid) ) {
+ if ( 255 == (int)sats->svid ) {
// Garmin uses 255 for empty
// gpsd uses 0 for empty
continue;