diff options
author | Keith Packard <keithp@keithp.com> | 2011-03-24 05:27:57 +0900 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2011-03-24 05:27:57 +0900 |
commit | f3e68341f6f5daaf26dd162e4f9a06c29988986a (patch) | |
tree | 2590305c2cc5677f190ae89f4d7ce61005d96544 /altosui/AltosDataPointReader.java | |
parent | 1e976a105423f2da1842f70da531c9051ba88a7f (diff) |
altosui: Add support for telemetry version 4
New telemetry format needed to support TeleNano and TeleMini
Signed-off-by: Keith Packard <keithp@keithp.com>
Diffstat (limited to 'altosui/AltosDataPointReader.java')
-rw-r--r-- | altosui/AltosDataPointReader.java | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/altosui/AltosDataPointReader.java b/altosui/AltosDataPointReader.java index 7704310b..ee57d2ce 100644 --- a/altosui/AltosDataPointReader.java +++ b/altosui/AltosDataPointReader.java @@ -15,6 +15,8 @@ class AltosDataPointReader implements Iterable<AltosDataPoint> { AltosState state; AltosRecord record; + final static int MISSING = AltosRecord.MISSING; + public AltosDataPointReader(Iterable<AltosRecord> reader) { this.iter = reader.iterator(); this.state = null; |