diff options
author | Keith Packard <keithp@keithp.com> | 2011-04-14 10:12:29 -0700 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2011-04-14 10:12:29 -0700 |
commit | 9cdef76c1275b343099d0d01af82d7eadd36a410 (patch) | |
tree | a5500996924c35b365013bbae61128ee1328c64b /altosui/AltosIgnite.java | |
parent | 5b3f18b38d80aa041b971204bf7a94278bd9584a (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/AltosIgnite.java')
-rw-r--r-- | altosui/AltosIgnite.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/altosui/AltosIgnite.java b/altosui/AltosIgnite.java index 1171d2ed..7a06c63d 100644 --- a/altosui/AltosIgnite.java +++ b/altosui/AltosIgnite.java @@ -172,7 +172,7 @@ public class AltosIgnite { serial = new AltosSerial(device); remote = false; - if (!device.matchProduct(AltosDevice.product_telemetrum)) + if (!device.matchProduct(Altos.product_telemetrum)) remote = true; } }
\ No newline at end of file |