summaryrefslogtreecommitdiff
path: root/altosui/AltosEepromIterable.java
diff options
context:
space:
mode:
authorKeith Packard <keithp@keithp.com>2011-03-30 11:47:07 -0700
committerKeith Packard <keithp@keithp.com>2011-03-30 11:47:07 -0700
commita9df9fc257eb2d7038d66ac7c2539aae4474bf12 (patch)
treeb075056c89047bae1bac840559dffe6e456b5a45 /altosui/AltosEepromIterable.java
parent87bff181a95f6bf92c2cec350d331ba6af779e80 (diff)
altosui: Parse and export Max flight log value
New configuration field might as well get dumped to the .csv files. Signed-off-by: Keith Packard <keithp@keithp.com>
Diffstat (limited to 'altosui/AltosEepromIterable.java')
-rw-r--r--altosui/AltosEepromIterable.java3
1 files changed, 3 insertions, 0 deletions
diff --git a/altosui/AltosEepromIterable.java b/altosui/AltosEepromIterable.java
index bb7c7bef..a7fd742f 100644
--- a/altosui/AltosEepromIterable.java
+++ b/altosui/AltosEepromIterable.java
@@ -281,6 +281,9 @@ public class AltosEepromIterable extends AltosRecordIterable {
case Altos.AO_LOG_RADIO_CAL:
out.printf ("# Radio cal: %d\n", record.a);
break;
+ case Altos.AO_LOG_MAX_FLIGHT_LOG:
+ out.printf ("# Max flight log: %d\n", record.a);
+ break;
case Altos.AO_LOG_MANUFACTURER:
out.printf ("# Manufacturer: %s\n", record.data);
break;