From b9760f1db04620d4fc5e495cc812b3b92ecd2e4e Mon Sep 17 00:00:00 2001 From: Dirk Hohndel Date: Wed, 31 May 2017 10:12:21 -0700 Subject: QML UI: try to also detect OSTC BT dive computers The naming scheme of OSTC dive computers doesn't match their product names, but they all behave the same from a download perspective, so we assume that any BT device that has a name starting with OSTC is an OSTC 3. Signed-off-by: Dirk Hohndel --- mobile-widgets/qmlmanager.cpp | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'mobile-widgets/qmlmanager.cpp') diff --git a/mobile-widgets/qmlmanager.cpp b/mobile-widgets/qmlmanager.cpp index 47786c0be..9a75fca9e 100644 --- a/mobile-widgets/qmlmanager.cpp +++ b/mobile-widgets/qmlmanager.cpp @@ -210,6 +210,9 @@ extern void addBtUuid(QBluetoothUuid uuid); void QMLManager::btDeviceDiscovered(const QBluetoothDeviceInfo &device) { QString newDevice = device.name(); + // all the HW OSTC BT computers show up as "OSTC" + some other text, depending on model + if (newDevice.startsWith("OSTC")) + newDevice = "OSTC 3"; QList serviceUuids = device.serviceUuids(); foreach (QBluetoothUuid id, serviceUuids) { addBtUuid(id); @@ -219,7 +222,8 @@ void QMLManager::btDeviceDiscovered(const QBluetoothDeviceInfo &device) QString vendor, product; foreach (vendor, productList.keys()) { if (productList[vendor].contains(newDevice)) { - appendTextToLog("this could be a " + vendor + " " + newDevice); + appendTextToLog("this could be a " + vendor + " " + + (newDevice == "OSTC 3" ? "OSTC family" : newDevice)); struct btVendorProduct btVP; btVP.btdi = device; btVP.vendorIdx = vendorList.indexOf(vendor); -- cgit v1.2.3-70-g09d2