diff options
author | Keith Packard <keithp@keithp.com> | 2011-08-14 21:09:42 -0700 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2011-08-14 21:09:42 -0700 |
commit | adb7d345963ab9981c49c7cc68c6b4d7156dce46 (patch) | |
tree | 17d564d5f7193b8294ba79540ce095425feb8723 | |
parent | 4f64d66295a8f76680af8cfda4650aa4c4f8576d (diff) |
altosui: Ancient log files used 'apogee' for 'coast' state
2009-07-18-serial-004-flight-000 says 'apogee' for the apogee-detect
phase of the flight; map this to coast so that this flight replays
correctly (although the log terminates at apogee...)
Signed-off-by: Keith Packard <keithp@keithp.com>
-rw-r--r-- | altosui/Altos.java | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/altosui/Altos.java b/altosui/Altos.java index 416d9328..d3f8fa67 100644 --- a/altosui/Altos.java +++ b/altosui/Altos.java @@ -112,6 +112,7 @@ public class Altos { string_to_state.put("fast", ao_flight_fast); string_to_state.put("coast", ao_flight_coast); string_to_state.put("drogue", ao_flight_drogue); + string_to_state.put("apogee", ao_flight_coast); string_to_state.put("main", ao_flight_main); string_to_state.put("landed", ao_flight_landed); string_to_state.put("invalid", ao_flight_invalid); |