diff options
author | Keith Packard <keithp@keithp.com> | 2013-05-01 09:40:59 -0700 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2013-05-01 09:40:59 -0700 |
commit | 39dcd19ded04175a074c9541c5e1752bac3eda8c (patch) | |
tree | 613fcbbff4893226312d40ca00dabd55ccaaedae | |
parent | 1b773ba85f665cf4862683b1b66990655284a44a (diff) |
altos: No need to set GPS tick in satellite packet
It's already been set in the location packet, and doing it twice bumps
TeleMetrum over the code space limit (yay!)
Signed-off-by: Keith Packard <keithp@keithp.com>
-rw-r--r-- | src/core/ao_telemetry.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/core/ao_telemetry.c b/src/core/ao_telemetry.c index 17c69c25..c3bbfec5 100644 --- a/src/core/ao_telemetry.c +++ b/src/core/ao_telemetry.c @@ -244,7 +244,6 @@ ao_send_satellite(void) { telemetry.generic.type = AO_TELEMETRY_SATELLITE; ao_mutex_get(&ao_gps_mutex); - telemetry.satellite.tick = ao_gps_tick; telemetry.satellite.channels = ao_gps_tracking_data.channels; ao_xmemcpy(&telemetry.satellite.sats, &ao_gps_tracking_data.sats, |