diff options
author | Keith Packard <keithp@keithp.com> | 2017-05-26 18:22:02 -0700 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2017-05-26 18:22:02 -0700 |
commit | 3d29882f5c70e627b0bbfe42c0a31d6cb5f6b6bf (patch) | |
tree | 88bc7d8d915646365f0500f902bf020b065239be /altoslib/AltosEepromRecordFull.java | |
parent | fd738d47bbc46d36698350d5450abe1125d990a3 (diff) |
altoslib: Get KML export working again
Even annotate the states with avg speed/accel for fun.
Signed-off-by: Keith Packard <keithp@keithp.com>
Diffstat (limited to 'altoslib/AltosEepromRecordFull.java')
-rw-r--r-- | altoslib/AltosEepromRecordFull.java | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/altoslib/AltosEepromRecordFull.java b/altoslib/AltosEepromRecordFull.java index b4968220..c29da025 100644 --- a/altoslib/AltosEepromRecordFull.java +++ b/altoslib/AltosEepromRecordFull.java @@ -26,22 +26,6 @@ public class AltosEepromRecordFull extends AltosEepromRecord { super.provide_data(listener, cal_data); AltosGPS gps; - /* Flush any pending GPS changes */ - if (cal_data.gps_pending()) { - switch (cmd()) { - case AltosLib.AO_LOG_GPS_LAT: - case AltosLib.AO_LOG_GPS_LON: - case AltosLib.AO_LOG_GPS_ALT: - case AltosLib.AO_LOG_GPS_SAT: - case AltosLib.AO_LOG_GPS_DATE: - break; - default: - listener.set_gps(cal_data.temp_gps()); - cal_data.reset_temp_gps(); - break; - } - } - switch (cmd()) { case AltosLib.AO_LOG_FLIGHT: listener.set_state(AltosLib.ao_flight_pad); |