summaryrefslogtreecommitdiff
path: root/altosui/AltosIgniteUI.java
diff options
context:
space:
mode:
authorKeith Packard <keithp@keithp.com>2011-04-14 10:12:29 -0700
committerKeith Packard <keithp@keithp.com>2011-04-14 10:12:29 -0700
commit9cdef76c1275b343099d0d01af82d7eadd36a410 (patch)
treea5500996924c35b365013bbae61128ee1328c64b /altosui/AltosIgniteUI.java
parent5b3f18b38d80aa041b971204bf7a94278bd9584a (diff)
altosui: Create abstract AltosDevice class
This will wrap either USB or BT devices. The USB device constants have been moved to Altos.java Signed-off-by: Keith Packard <keithp@keithp.com>
Diffstat (limited to 'altosui/AltosIgniteUI.java')
-rw-r--r--altosui/AltosIgniteUI.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/altosui/AltosIgniteUI.java b/altosui/AltosIgniteUI.java
index 000adc98..ad5b7cfb 100644
--- a/altosui/AltosIgniteUI.java
+++ b/altosui/AltosIgniteUI.java
@@ -275,7 +275,7 @@ public class AltosIgniteUI
private boolean open() {
command_queue = new LinkedBlockingQueue<String>();
- device = AltosDeviceDialog.show(owner, AltosDevice.product_any);
+ device = AltosDeviceDialog.show(owner, Altos.product_any);
if (device != null) {
try {
AltosIgnite ignite = new AltosIgnite(device);