aboutsummaryrefslogtreecommitdiffstats
path: root/core
diff options
context:
space:
mode:
authorGravatar Dirk Hohndel <dirk@hohndel.org>2017-07-02 21:57:08 -0700
committerGravatar Dirk Hohndel <dirk@hohndel.org>2017-07-02 21:57:08 -0700
commit0482f054a7770ec0daeda47aafbd816cbab02ed8 (patch)
treed6bf60f967e216946a9102a25e7e83f23cd41389 /core
parent1e895095cf3ea1adb72dd19ba5e6a6bdb94ab706 (diff)
downloadsubsurface-0482f054a7770ec0daeda47aafbd816cbab02ed8.tar.gz
QML UI: add more dive computers
This really needs to be done differently - we need a structured way to associate a transport mechanism with each of the dive computers we support. Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'core')
-rw-r--r--core/downloadfromdcthread.cpp10
1 files changed, 10 insertions, 0 deletions
diff --git a/core/downloadfromdcthread.cpp b/core/downloadfromdcthread.cpp
index cdbb3c53f..acb5ce6a8 100644
--- a/core/downloadfromdcthread.cpp
+++ b/core/downloadfromdcthread.cpp
@@ -63,10 +63,20 @@ static void fill_supported_mobile_list()
QStringList({{"Petrel"}, {"Petrel 2"}, {"Perdix"}});
mobileProductList["Suunto"] =
QStringList({"EON Steel"});
+ mobileProductList["Scubapro"] =
+ QStringList({{"G2"}});
#endif
#if defined(Q_OS_IOS)
/* BLE only, Qt does not support classic BT on iOS */
+ mobileProductList["Heinrichs Weikamp"] =
+ QStringList({{"OSTC 4"}});
+ mobileProductList["Shearwater"] =
+ QStringList({{"Petrel"}, {"Petrel 2"}, {"Perdix"}});
+ mobileProductList["Suunto"] =
+ QStringList({"EON Steel"});
+ mobileProductList["Scubapro"] =
+ QStringList({{"G2"}});
#endif
}