Add Mini logging format. Use in EasyMini
[fw/altos] / altosui / AltosLanded.java
index 1d209bda8ccaa493371d104126efb2d1c6ca21c2..9dab52c436098b8ea0f2a8a90bd5a8829d9276d3 100644 (file)
@@ -253,6 +253,9 @@ public class AltosLanded extends JComponent implements AltosFlightDisplay, Actio
                                        } else if (filename.endsWith("mega")) {
                                                FileInputStream in = new FileInputStream(file);
                                                records = new AltosEepromMegaIterable(in);
+                                       } else if (filename.endsWith("mini")) {
+                                               FileInputStream in = new FileInputStream(file);
+                                               records = new AltosEepromMiniIterable(in);
                                        } else {
                                                throw new FileNotFoundException(filename);
                                        }