From 512b4d25bf98f9ee2a2daff30e9e33fb0c88c140 Mon Sep 17 00:00:00 2001 From: CrNMGuy Date: Fri, 10 Aug 2018 19:05:26 +0200 Subject: [PATCH] typo on gps.satellites --- extras/doc/Data Model.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/extras/doc/Data Model.md b/extras/doc/Data Model.md index 2976e00..1f02b45 100644 --- a/extras/doc/Data Model.md +++ b/extras/doc/Data Model.md @@ -108,12 +108,12 @@ There is additional information that is not related to a fix. Instead, it conta * `gps.UTCus()`, the number of microseconds since the last received UTC time, calculated from `micros()` and `gps.UTCsecondStart`. * `gps.nmeaMessage`, the latest received message type. This is an ephemeral value, because multiple sentences are merged into one `fix` structure. If you only check this after a complete fix is received, you will only see the LAST_SENTENCE_IN_INTERVAL. * enum values NMEA_GLL, NMEA_GSA, NMEA_GST, NMEA_GSV, NMEA_RMC, NMEA_VTG or NMEA_ZDA - * `gps.satellies[]`, an array of satellite-specific information, where each element contains - * `gps.satellies[i].id`, satellite ID - * `gps.satellies[i].elevation`, satellite elevation in 0-90 integer degrees - * `gps.satellies[i].azimuth`, satellite azimuth in 0-359 integer degrees - * `gps.satellies[i].snr`, satellite signal-to-noise ratio in 0-99 integer dBHz - * `gps.satellies[i].tracked`, satellite being tracked flag, a boolean + * `gps.satellites[]`, an array of satellite-specific information, where each element contains + * `gps.satellites[i].id`, satellite ID + * `gps.satellites[i].elevation`, satellite elevation in 0-90 integer degrees + * `gps.satellites[i].azimuth`, satellite azimuth in 0-359 integer degrees + * `gps.satellites[i].snr`, satellite signal-to-noise ratio in 0-99 integer dBHz + * `gps.satellites[i].tracked`, satellite being tracked flag, a boolean * `gps.sat_count`, the number of elements in the `gps.satellites[]` array * `gps.talker_id[]`, talker ID, a two-character array (not NUL-terminated) * `gps.mfr_id[]`, manufacturer ID, a three-character array (not NUL-terminated)