diff options
| author | Keith Packard <keithp@keithp.com> | 2013-05-21 11:16:54 -0700 | 
|---|---|---|
| committer | Keith Packard <keithp@keithp.com> | 2013-05-21 11:16:54 -0700 | 
| commit | fd5567882b732f8947b44b217552077c82a3d28e (patch) | |
| tree | 291a07d2c1f0586c238f29389abc881096e27c5f /altosui/AltosUI.java | |
| parent | fd55c1fe53adf5c50dcd3ce8296f80871cec73e9 (diff) | |
| parent | 57b4d82dee10b142b820aa306028a288a85214f6 (diff) | |
Merge branch 'lpc'
Diffstat (limited to 'altosui/AltosUI.java')
| -rw-r--r-- | altosui/AltosUI.java | 4 | 
1 files changed, 4 insertions, 0 deletions
| diff --git a/altosui/AltosUI.java b/altosui/AltosUI.java index 9f8f6dda..4362e36c 100644 --- a/altosui/AltosUI.java +++ b/altosui/AltosUI.java @@ -354,6 +354,8 @@ public class AltosUI extends AltosUIFrame {  				return new AltosEepromIterable(in);  			else if (file.getName().endsWith("mega"))  				return new AltosEepromMegaIterable(in); +			else if (file.getName().endsWith("mini")) +				return new AltosEepromMiniIterable(in);  			else  				return new AltosTelemetryIterable(in);  		} catch (FileNotFoundException fe) { @@ -441,6 +443,8 @@ public class AltosUI extends AltosUIFrame {  			recs = new AltosEepromIterable(in);  		} else if (file.getName().endsWith("mega")) {  			recs = new AltosEepromMegaIterable(in); +		} else if (file.getName().endsWith("mini")) { +			recs = new AltosEepromMiniIterable(in);  		} else {  			recs = new AltosTelemetryIterable(in);  		} | 
