diff options
Diffstat (limited to 'core/btdiscovery.cpp')
-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 258f16e2c..6ec4bba7f 100644 --- a/core/btdiscovery.cpp +++ b/core/btdiscovery.cpp @@ -69,6 +69,11 @@ static dc_descriptor_t *getDeviceType(QString btName) product = "Quad"; } + if (btName.contains(QRegularExpression("^FQ\\d{6}$"))) { + vendor = "Aqualung"; + product = "i770R"; + } + if (!vendor.isEmpty() && !product.isEmpty()) return descriptorLookup.value(vendor + product); |