diff options
author | Keith Packard <keithp@keithp.com> | 2012-10-22 22:38:46 -0700 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2012-10-22 22:38:46 -0700 |
commit | 27c31572f4f63c2282e1cc583f4402337fcb548a (patch) | |
tree | ad5b75b2e99c20905218bf1762ac7aaf3b37d0ac | |
parent | 79f4e684713cff6bf999cac52f5d9525a6f7d278 (diff) |
altosui: Allow any non-basestation to be configured
TelePyro has some configuration bits.
Signed-off-by: Keith Packard <keithp@keithp.com>
-rw-r--r-- | altosui/AltosConfig.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/altosui/AltosConfig.java b/altosui/AltosConfig.java index be9ab8bf..44c6239a 100644 --- a/altosui/AltosConfig.java +++ b/altosui/AltosConfig.java @@ -515,7 +515,7 @@ public class AltosConfig implements ActionListener { try { serial_line = new AltosSerial(device); try { - if (!device.matchProduct(Altos.product_altimeter)) + if (device.matchProduct(Altos.product_basestation)) remote = true; init_ui(); } catch (InterruptedException ie) { |