diff options
| author | Keith Packard <keithp@keithp.com> | 2012-03-27 22:02:13 -0700 |
|---|---|---|
| committer | Keith Packard <keithp@keithp.com> | 2012-03-27 22:03:05 -0700 |
| commit | 3f0379db7067eaf104892a82b9c49142087adece (patch) | |
| tree | 3e0e7c82ae099f3441da6134fba749e20966fbe7 /altosui/AltosSerial.java | |
| parent | 7a9baabaf33db5e30eb4ef8f923a4fd96fd28fb4 (diff) | |
altosui: Make 'monitor idle' work with older TeleMetrum firmware (trac #28)
Older TM firmware did not have the 'done' line at the end of the GPS
report, rather it would just stop after showing the Flags value. Check
the TM version and stop looking for GPS data when the Flags line appears.
Signed-off-by: Keith Packard <keithp@keithp.com>
Diffstat (limited to 'altosui/AltosSerial.java')
| -rw-r--r-- | altosui/AltosSerial.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/altosui/AltosSerial.java b/altosui/AltosSerial.java index dffc74ea..77c926b1 100644 --- a/altosui/AltosSerial.java +++ b/altosui/AltosSerial.java @@ -55,7 +55,7 @@ public class AltosSerial implements Runnable { boolean monitor_mode; int telemetry; double frequency; - static boolean debug; + public static boolean debug; boolean remote; LinkedList<String> pending_output = new LinkedList<String>(); Frame frame; |
