summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGary E. Miller <gem@rellim.com>2016-04-13 12:01:27 -0700
committerGary E. Miller <gem@rellim.com>2016-04-13 12:01:27 -0700
commit2f49ed55327c7ca9d5211f6ae5e4fe0f2e1812e1 (patch)
treed49b80512f37957a8880c1f8d89f20e3892411c8
parentb57ba43ea7a7d48539141fdc56ecc96e9845c633 (diff)
downloadgpsd-2f49ed55327c7ca9d5211f6ae5e4fe0f2e1812e1.tar.gz
Improve comments in satellite_t.
-rw-r--r--gps.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/gps.h b/gps.h
index bd429b20..daccd116 100644
--- a/gps.h
+++ b/gps.h
@@ -1797,10 +1797,11 @@ struct ais_t
};
};
+/* basic data, per PRN, from GPGSA and GPGSV */
struct satellite_t {
double ss; /* signal-to-noise ratio (dB) */
- bool used; /* PRNs of satellites used in solution */
- short PRN; /* PRNs of satellite */
+ bool used; /* this satellite used in solution */
+ short PRN; /* PRN of this satellite */
short elevation; /* elevation of satellite */
short azimuth; /* azimuth */
};