From f789b0b94eb01e3875f7711ce053658c31e75fad Mon Sep 17 00:00:00 2001 From: Keith Packard Date: Sun, 21 Oct 2012 17:00:08 -0700 Subject: [PATCH] altosui: Handle .mega files in Landed tab 'Graph Flight' button Need to check for .mega files here too. Signed-off-by: Keith Packard --- altosui/AltosLanded.java | 3 +++ 1 file changed, 3 insertions(+) diff --git a/altosui/AltosLanded.java b/altosui/AltosLanded.java index 0111a08a..5e073f7d 100644 --- a/altosui/AltosLanded.java +++ b/altosui/AltosLanded.java @@ -250,6 +250,9 @@ public class AltosLanded extends JComponent implements AltosFlightDisplay, Actio } else if (filename.endsWith("telem")) { FileInputStream in = new FileInputStream(file); records = new AltosTelemetryIterable(in); + } else if (filename.endsWith("mega")) { + FileInputStream in = new FileInputStream(file); + records = new AltosEepromMegaIterable(in); } else { throw new FileNotFoundException(filename); } -- 2.30.2