summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKeith Packard <keithp@keithp.com>2014-09-11 14:14:07 -0700
committerKeith Packard <keithp@keithp.com>2014-09-11 14:26:34 -0700
commit368c7d583380b4453f432d5a965a1e4c45a92f92 (patch)
treee0a69ff4cc0b2b736d6cf920ced90e9ab593f2fc
parent2ee937b603b181bb24768eb4d0e2f918a5377fd3 (diff)
altoslib: Stop re-loading previous flight when starting telemetry monitoring
This feature is necessary on AltosDroid because there's no other UI for reloading an old flight. It's not useful on the desktop where you really just want to see new telemetry; old telemetry is availbale through the 'graph flight' or 'replay' mechanisms. AltosDroid uses a different class for reading telemetry data, so we can just remove this feature from altoslib at this point. Signed-off-by: Keith Packard <keithp@keithp.com>
-rw-r--r--altoslib/AltosTelemetryReader.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/altoslib/AltosTelemetryReader.java b/altoslib/AltosTelemetryReader.java
index 7539452d..20526a2c 100644
--- a/altoslib/AltosTelemetryReader.java
+++ b/altoslib/AltosTelemetryReader.java
@@ -199,6 +199,6 @@ public class AltosTelemetryReader extends AltosFlightReader {
public AltosTelemetryReader(AltosLink link)
throws IOException, InterruptedException, TimeoutException {
- this(link, existing_data(link));
+ this(link, null);
}
}