diff options
author | Keith Packard <keithp@keithp.com> | 2011-03-25 21:34:31 -0700 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2011-03-25 21:35:44 -0700 |
commit | 011615d40b3cb1d1c0ab9fa41e139e263a6a51e7 (patch) | |
tree | c9fe599e61a731579c3504ef2eb9fcd41f05ae3d /altosui/Altos.java | |
parent | dea80af81b388cc3d7073444919f4e98b12fa730 (diff) |
altosui: Add support for downloading TeleMini/TeleNano flight logs
Splits the eeprom downloading code into eeprom block downloading and
separate eeprom data parsing so that the new data logging format can
share the data downloading code.
Signed-off-by: Keith Packard <keithp@keithp.com>
Diffstat (limited to 'altosui/Altos.java')
-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 9d5b2e02..3ef4d799 100644 --- a/altosui/Altos.java +++ b/altosui/Altos.java @@ -34,6 +34,7 @@ public class Altos { static final int AO_LOG_GPS_ALT = 'H'; static final int AO_LOG_GPS_SAT = 'V'; static final int AO_LOG_GPS_DATE = 'Y'; + static final int AO_LOG_HEIGHT = 'h'; /* Added for header fields in eeprom files */ static final int AO_LOG_CONFIG_VERSION = 1000; |