diff options
author | Keith Packard <keithp@keithp.com> | 2013-08-31 08:19:28 -0500 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2013-08-31 08:19:28 -0500 |
commit | 017ed54ff69ef2f7740ea2578e22bf72e88deafb (patch) | |
tree | 3b30317b5e3d495ded06cb75c46bc9b4f8bef04f /altosui/AltosUI.java | |
parent | f07f6d55edf5b97020680b3ce1d9e00bb3df64a6 (diff) |
altoslib/altosui: Fixes for state changes
Format for gps alt (now double).
Use new code for csv file loading.
Signed-off-by: Keith Packard <keithp@keithp.com>
Diffstat (limited to 'altosui/AltosUI.java')
-rw-r--r-- | altosui/AltosUI.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/altosui/AltosUI.java b/altosui/AltosUI.java index 72b2c0d9..b47df0d9 100644 --- a/altosui/AltosUI.java +++ b/altosui/AltosUI.java @@ -353,7 +353,7 @@ public class AltosUI extends AltosUIFrame { if (file.getName().endsWith("eeprom")) return new AltosEepromFile(in); else - return null; // new AltosTelemetryIterable(in); + return new AltosTelemetryFile(in); } catch (FileNotFoundException fe) { System.out.printf("%s\n", fe.getMessage()); return null; |