summaryrefslogtreecommitdiff
path: root/altosuilib
diff options
context:
space:
mode:
authorKeith Packard <keithp@keithp.com>2013-04-02 16:43:53 -0700
committerKeith Packard <keithp@keithp.com>2013-04-02 16:43:53 -0700
commit0cd203e418e73a1f11460425985b7575c2f0a76c (patch)
tree6ccd344f8d755e1bd19f0af2c4b7fa7d8a2e60bf /altosuilib
parent96c32125a780ad6b39c015f4abbae07fead68582 (diff)
Set telegps USB id to 0025
It was accidentally using the same ID as megadongle... Signed-off-by: Keith Packard <keithp@keithp.com>
Diffstat (limited to 'altosuilib')
-rw-r--r--altosuilib/AltosUSBDevice.java3
1 files changed, 2 insertions, 1 deletions
diff --git a/altosuilib/AltosUSBDevice.java b/altosuilib/AltosUSBDevice.java
index a5496597..5268927c 100644
--- a/altosuilib/AltosUSBDevice.java
+++ b/altosuilib/AltosUSBDevice.java
@@ -76,7 +76,8 @@ public class AltosUSBDevice extends altos_device implements AltosDevice {
if (want_product == AltosUILib.product_altimeter)
return matchProduct(AltosUILib.product_telemetrum) ||
- matchProduct(AltosUILib.product_megametrum);
+ matchProduct(AltosUILib.product_megametrum) ||
+ matchProduct(AltosUILib.product_telegps);
int have_product = getProduct();