summaryrefslogtreecommitdiff
path: root/altosui/AltosUI.java
diff options
context:
space:
mode:
authorKeith Packard <keithp@keithp.com>2012-01-02 22:35:41 -0800
committerKeith Packard <keithp@keithp.com>2012-01-02 22:35:41 -0800
commitbe5e0768a43327a71d994fdeb120a41fa0f342a9 (patch)
treeb48a1138c844db1eec035eede03f797b7058040c /altosui/AltosUI.java
parente2b746e1a69eb672c02b63bb549bb2f8ece5b8e9 (diff)
altosui: Move telemetry reader &c to altoslib
Move all of the device and file reading code into altoslib Signed-off-by: Keith Packard <keithp@keithp.com>
Diffstat (limited to 'altosui/AltosUI.java')
-rw-r--r--altosui/AltosUI.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/altosui/AltosUI.java b/altosui/AltosUI.java
index 95aab1d0..125653d3 100644
--- a/altosui/AltosUI.java
+++ b/altosui/AltosUI.java
@@ -48,7 +48,7 @@ public class AltosUI extends AltosFrame {
void telemetry_window(AltosDevice device) {
try {
- AltosFlightReader reader = new AltosTelemetryReader(device);
+ AltosFlightReader reader = new AltosTelemetryReader(new AltosSerial(device));
if (reader != null)
new AltosFlightUI(voice, reader, device.getSerial());
} catch (FileNotFoundException ee) {