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 e99fff6ee..bfc3dc8d2 100644 --- a/core/btdiscovery.cpp +++ b/core/btdiscovery.cpp @@ -37,6 +37,11 @@ static dc_descriptor_t *getDeviceType(QString btName) product = "EON Steel"; } + if (btName.startsWith("G2")) { + vendor = "Scubapro"; + product = "G2"; + } + if (!vendor.isEmpty() && !product.isEmpty()) return(descriptorLookup[vendor + product]); |