diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2018-08-09 05:44:20 -0700 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2018-08-11 11:14:22 -0700 |
commit | 5a9c8f3a5eb5b0a1f88684444c6afec1dc8dc668 (patch) | |
tree | b364d8d830bd3368c147bc9111f4ab2d4b8cd734 /mobile-widgets/qmlmanager.cpp | |
parent | c10a63ce015ef4dd9db46a4701efda1ef4b8a723 (diff) | |
download | subsurface-5a9c8f3a5eb5b0a1f88684444c6afec1dc8dc668.tar.gz |
QML UI: add another product ID to recognized FTDI cables
We aren't sure if this is Aqualung specific or generic.
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'mobile-widgets/qmlmanager.cpp')
-rw-r--r-- | mobile-widgets/qmlmanager.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/mobile-widgets/qmlmanager.cpp b/mobile-widgets/qmlmanager.cpp index 9bcacafec..94a47e51c 100644 --- a/mobile-widgets/qmlmanager.cpp +++ b/mobile-widgets/qmlmanager.cpp @@ -1833,7 +1833,8 @@ void QMLManager::showDownloadPage(QString deviceString) } else if (deviceString.contains("mVendorId=1027") && (deviceString.contains("mProductId=24577") || deviceString.contains("mProductId=24592") || - deviceString.contains("mProductId=24593"))) { + deviceString.contains("mProductId=24593") || + deviceString.contains("mProductId=24597"))) { name = QString("-1;-1;%1").arg(connectionListModel.indexOf("FTDI")); } else if (deviceString.contains("mVendorId=1027") && deviceString.contains("mProductId=62560")) { |