diff options
author | Anthony Towns <aj@erisian.com.au> | 2010-09-10 15:50:01 +1000 |
---|---|---|
committer | Anthony Towns <aj@erisian.com.au> | 2010-09-10 15:50:01 +1000 |
commit | 7c2e4114a3a43f919a7a6c967d3f16e5d630f90f (patch) | |
tree | 0b31ffddad5ff8cb54288a37117cf0fcf8893be6 /ao-tools/altosui/AltosConfig.java | |
parent | ddc83b4c401be965a9947782becf20cc8c54e6a2 (diff) | |
parent | af200f5b84555de0556b52146379f3934774a3f3 (diff) |
Merge branch 'master' of git://git.gag.com/fw/altos
Diffstat (limited to 'ao-tools/altosui/AltosConfig.java')
-rw-r--r-- | ao-tools/altosui/AltosConfig.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ao-tools/altosui/AltosConfig.java b/ao-tools/altosui/AltosConfig.java index 3d970748..7b6cd78c 100644 --- a/ao-tools/altosui/AltosConfig.java +++ b/ao-tools/altosui/AltosConfig.java @@ -238,12 +238,12 @@ public class AltosConfig implements Runnable, ActionListener { version = new string_ref("unknown"); product = new string_ref("unknown"); - device = AltosDeviceDialog.show(owner, AltosDevice.Any); + device = AltosDeviceDialog.show(owner, AltosDevice.product_any); serial_line = new AltosSerial(); if (device != null) { try { serial_line.open(device); - if (!device.matchProduct(AltosDevice.TeleMetrum)) + if (!device.matchProduct(AltosDevice.product_telemetrum)) remote = true; config_thread = new Thread(this); config_thread.start(); |