diff options
| author | Keith Packard <keithp@keithp.com> | 2017-04-22 15:55:48 -0700 | 
|---|---|---|
| committer | Keith Packard <keithp@keithp.com> | 2017-04-22 15:58:29 -0700 | 
| commit | 6804ead7f7e54ff34b257e10e381dc52d5a61b06 (patch) | |
| tree | a5511b5586a616d6d7c08274cf4b9d98a089dbcf /altoslib/AltosEepromFile.java | |
| parent | 359e2d6eca5258f4fabc59772f1320e195a7397c (diff) | |
altoslib: Add TeleFireTwo eeprom support
Signed-off-by: Keith Packard <keithp@keithp.com>
Diffstat (limited to 'altoslib/AltosEepromFile.java')
| -rw-r--r-- | altoslib/AltosEepromFile.java | 3 | 
1 files changed, 3 insertions, 0 deletions
| 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<AltosEeprom>());  			break; | 
