From 6804ead7f7e54ff34b257e10e381dc52d5a61b06 Mon Sep 17 00:00:00 2001 From: Keith Packard Date: Sat, 22 Apr 2017 15:55:48 -0700 Subject: altoslib: Add TeleFireTwo eeprom support Signed-off-by: Keith Packard --- altoslib/AltosEepromFile.java | 3 +++ 1 file changed, 3 insertions(+) (limited to 'altoslib/AltosEepromFile.java') diff --git a/altoslib/AltosEepromFile.java b/altoslib/AltosEepromFile.java index baeec730..5544ec37 100644 --- a/altoslib/AltosEepromFile.java +++ b/altoslib/AltosEepromFile.java @@ -109,6 +109,9 @@ public class AltosEepromFile extends AltosStateIterable { case AltosLib.AO_LOG_FORMAT_TELEGPS: body = new AltosEepromIterable(AltosEepromGPS.read(input)); break; + case AltosLib.AO_LOG_FORMAT_TELEFIRETWO: + body = new AltosEepromIterable(AltosEepromFireTwo.read(input)); + break; default: body = new AltosEepromIterable(new LinkedList()); break; -- cgit v1.2.3