diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2017-10-15 13:09:44 -0400 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2017-10-15 21:31:28 -0400 |
commit | 4d283bdd5faba0a4409ac6a23b60916ea30f4dc1 (patch) | |
tree | 646b4dd71b1249dcb3f147eba131640d2772c12a | |
parent | 49c8c966fc60d5c7939873607f05013a92fce8ed (diff) | |
download | subsurface-4d283bdd5faba0a4409ac6a23b60916ea30f4dc1.tar.gz |
Android should support the Cobalt dive compouters
With an OTA adapter - sadly I can't test that. This driver opens a
specific USB device and will ignore the connection settings. It would be
better to get some visual feedback for that (in the QML UI), but I'll
leave that until this has been verified to work.
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
-rw-r--r-- | core/downloadfromdcthread.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/core/downloadfromdcthread.cpp b/core/downloadfromdcthread.cpp index 3d7cc3d17..2e6493d35 100644 --- a/core/downloadfromdcthread.cpp +++ b/core/downloadfromdcthread.cpp @@ -96,7 +96,8 @@ static void fill_supported_mobile_list() QStringList({{"Element II (IQ-750)"}, {"Zen (IQ-900)"}, {"Zen Air (IQ-950)"}}); mobileProductList["Uwatec"] = QStringList({{"Aladin Air Twin"}, {"Aladin Air Z"}, {"Aladin Air Z Nitrox"}, {"Aladin Air Z O2"}, {"Aladin Pro"}, {"Aladin Pro Ultra"}, {"Aladin Sport Plus"}, {"Memomouse"}}); - + mobileProductList["Atomic Aquatics"] = + QStringList({{"Cobalt"}, {"Cobalt 2"}}) #endif #if defined(Q_OS_IOS) /* BLE only, Qt does not support classic BT on iOS */ |