diff options
-rw-r--r-- | core/btdiscovery.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/core/btdiscovery.cpp b/core/btdiscovery.cpp index d945dcf21..0af809c6d 100644 --- a/core/btdiscovery.cpp +++ b/core/btdiscovery.cpp @@ -90,6 +90,11 @@ static dc_descriptor_t *getDeviceType(QString btName) product = "Geo 4.0"; } + if (btName.contains(QRegularExpression("^DS\\d{6}"))) { + vendor = "Ratio"; + product = "iX3M GPS Easy"; // we don't know which of the GPS models, so set one + } + if (!vendor.isEmpty() && !product.isEmpty()) return descriptorLookup.value(vendor + product); |