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 20dda1a39..d945dcf21 100644 --- a/core/btdiscovery.cpp +++ b/core/btdiscovery.cpp @@ -85,6 +85,11 @@ static dc_descriptor_t *getDeviceType(QString btName) product = "Pro Plus X"; } + if (btName.contains(QRegularExpression("^FS\\d{6}$"))) { + vendor = "Oceanic"; + product = "Geo 4.0"; + } + if (!vendor.isEmpty() && !product.isEmpty()) return descriptorLookup.value(vendor + product); |