From 9bb7bbef8490c360bc084802ea11d75004d08ee8 Mon Sep 17 00:00:00 2001 From: William Perry Date: Sat, 27 Apr 2019 17:13:03 -0400 Subject: [PATCH] Support for Scubapro G2 HUD discovery via bluetooth Signed-off-by: William M Perry --- core/btdiscovery.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/core/btdiscovery.cpp b/core/btdiscovery.cpp index 7e75994da..c057abd8b 100644 --- a/core/btdiscovery.cpp +++ b/core/btdiscovery.cpp @@ -56,9 +56,10 @@ static dc_descriptor_t *getDeviceType(QString btName) product = "EON Core"; } - if (btName.startsWith("G2") || btName.startsWith("Aladin")) { + if (btName.startsWith("G2") || btName.startsWith("Aladin") || btName.startsWith("HUD")) { vendor = "Scubapro"; if (btName.startsWith("G2")) product = "G2"; + if (btName.startsWith("HUD")) product = "G2 HUD"; if (btName.startsWith("Aladin")) product = "Aladin Sport Matrix"; }