summaryrefslogtreecommitdiff
path: root/altoslib/AltosEepromNew.java
diff options
context:
space:
mode:
authorKeith Packard <keithp@keithp.com>2017-05-25 22:36:05 -0700
committerKeith Packard <keithp@keithp.com>2017-05-25 22:37:22 -0700
commit222158581887b5f9e8b9843d14321c313fa023fa (patch)
tree4baab1916948932f9c5eff5960d685b58d62f470 /altoslib/AltosEepromNew.java
parent4d497c1be534e2b206edec3c096198c8ea64cebe (diff)
altoslib/altosuilib/altosui: More work towards using AltosFlightSeries for analysis
Graphing and CSV seem complete now; stats still missing lots of stuff. Signed-off-by: Keith Packard <keithp@keithp.com>
Diffstat (limited to 'altoslib/AltosEepromNew.java')
-rw-r--r--altoslib/AltosEepromNew.java3
1 files changed, 2 insertions, 1 deletions
diff --git a/altoslib/AltosEepromNew.java b/altoslib/AltosEepromNew.java
index 5220f3a0..0da3df71 100644
--- a/altoslib/AltosEepromNew.java
+++ b/altoslib/AltosEepromNew.java
@@ -165,7 +165,8 @@ public class AltosEepromNew {
int start = data.size();
if (config_data().log_format != AltosLib.AO_LOG_FORMAT_TINY) {
- data.add((byte) tokens[0].codePointAt(0));
+ byte cmd = (byte) tokens[0].codePointAt(0);
+ data.add(cmd);
int time = AltosLib.fromhex(tokens[1]);