summaryrefslogtreecommitdiff
path: root/src/ao_gps_test_skytraq.c
diff options
context:
space:
mode:
authorKeith Packard <keithp@keithp.com>2011-03-19 23:53:08 -0700
committerKeith Packard <keithp@keithp.com>2011-03-19 23:55:11 -0700
commitbe838db49d999426a9dd02c0166fe161722f1e61 (patch)
treecad4332accb7dc7d1675c6a2acf1f72e7f5d87f7 /src/ao_gps_test_skytraq.c
parentad6bb342d237988404fa32540b38c61d6ddc1f0d (diff)
altos: New telemetry report format (version 4). Supports tiny telemetry.
This completely replaces the version 3 format with a much simpler and easier to parse scheme. It's described in detail in ao_telem.h, but the basic idea is that the whole line is split into name/value pairs, separated by whitespace. Every name is unique, and the values are either strings or integers. No extraneous formatting or units are provided. Signed-off-by: Keith Packard <keithp@keithp.com>
Diffstat (limited to 'src/ao_gps_test_skytraq.c')
-rw-r--r--src/ao_gps_test_skytraq.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/ao_gps_test_skytraq.c b/src/ao_gps_test_skytraq.c
index 4010e09c..b94e9bd2 100644
--- a/src/ao_gps_test_skytraq.c
+++ b/src/ao_gps_test_skytraq.c
@@ -28,6 +28,7 @@
#define AO_GPS_VALID (1 << 4)
#define AO_GPS_RUNNING (1 << 5)
#define AO_GPS_DATE_VALID (1 << 6)
+#define AO_GPS_COURSE_VALID (1 << 7)
struct ao_gps_data {
uint8_t year;