X-Git-Url: https://git.gag.com/?p=fw%2Faltos;a=blobdiff_plain;f=altosui%2FAltosLanded.java;h=74177753c6dbfe31cd9275dd370b4e30b3170964;hp=139b81b636031ee4e74465f013b2d3ffe2b1faf0;hb=677fcafd3816b6d8d86b2dc41b840d97b5ccbf07;hpb=5b976a6651f4eb05d30afc08b9e1f27c7e52ae00 diff --git a/altosui/AltosLanded.java b/altosui/AltosLanded.java index 139b81b6..74177753 100644 --- a/altosui/AltosLanded.java +++ b/altosui/AltosLanded.java @@ -21,7 +21,7 @@ import java.awt.*; import java.awt.event.*; import javax.swing.*; import java.io.*; -import org.altusmetrum.altoslib_2.*; +import org.altusmetrum.altoslib_3.*; public class AltosLanded extends JComponent implements AltosFlightDisplay, ActionListener { GridBagLayout layout; @@ -250,7 +250,7 @@ public class AltosLanded extends JComponent implements AltosFlightDisplay, Actio states = new AltosEepromFile(in); } else if (filename.endsWith("telem")) { FileInputStream in = new FileInputStream(file); - states = null; // new AltosTelemetryIterable(in); + states = new AltosTelemetryFile(in); } else { throw new FileNotFoundException(filename); }