diff options
author | Keith Packard <keithp@keithp.com> | 2009-11-15 16:04:41 -0800 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2009-11-15 16:19:52 -0800 |
commit | 524665fc221b0d483453c67b7211e282cebc8980 (patch) | |
tree | c65642da7284f8f184382acb785e51e5fe7a08af /ao-tools/lib/cc.h | |
parent | 3ee279ba76c2a79d142c466f19ef758cf4c01d70 (diff) |
Add date to GPS data, captured from GPRMC packet.
Pull the date out of the GPS stream and send it over the telemetry
link and write it to the eeprom.
Signed-off-by: Keith Packard <keithp@keithp.com>
Diffstat (limited to 'ao-tools/lib/cc.h')
-rw-r--r-- | ao-tools/lib/cc.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/ao-tools/lib/cc.h b/ao-tools/lib/cc.h index b8e3c061..ebc0db7d 100644 --- a/ao-tools/lib/cc.h +++ b/ao-tools/lib/cc.h @@ -192,6 +192,9 @@ struct cc_flightcooked { struct cc_gps_time { + int year; + int month; + int day; int hour; int minute; int second; |