From: Keith Packard Date: Sat, 13 Oct 2012 20:32:56 +0000 (-0700) Subject: altosui: Parse .mega files from command line X-Git-Tag: 1.1.9.1~30 X-Git-Url: https://git.gag.com/?p=fw%2Faltos;a=commitdiff_plain;h=c607bd1442e60fec1421955c996f6aad1d98647a;ds=inline altosui: Parse .mega files from command line Signed-off-by: Keith Packard --- 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); }