From c607bd1442e60fec1421955c996f6aad1d98647a Mon Sep 17 00:00:00 2001 From: Keith Packard Date: Sat, 13 Oct 2012 13:32:56 -0700 Subject: [PATCH] altosui: Parse .mega files from command line Signed-off-by: Keith Packard --- altosui/AltosUI.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/altosui/AltosUI.java b/altosui/AltosUI.java index b5cbefe7..dcc0de60 100644 --- a/altosui/AltosUI.java +++ b/altosui/AltosUI.java @@ -444,6 +444,8 @@ public class AltosUI extends AltosFrame { //AltosReplayReader reader; if (file.getName().endsWith("eeprom")) { recs = new AltosEepromIterable(in); + } else if (file.getName().endsWith("mega")) { + recs = new AltosEepromMegaIterable(in); } else { recs = new AltosTelemetryIterable(in); } -- 2.30.2