diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2017-07-19 06:19:06 -0700 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2017-07-19 06:21:23 -0700 |
commit | 94d8abd1a292ac0b02064c906da3a66ccf9e6737 (patch) | |
tree | 79a2a1767a8c4cc3105e6048d3641e13703a653d /core/downloadfromdcthread.cpp | |
parent | 08c2f5492af48e77f5f49d5768baf1dc045b9e8a (diff) | |
download | subsurface-94d8abd1a292ac0b02064c906da3a66ccf9e6737.tar.gz |
Correct list of Shearwater BLE dive computers
Some Petrel 2 computers are dual stack. We need to list the Petrel here as well
since the Petrel 2 actually identifies itself via BT/BLE as Petrel and we can't
tell them appart until after we started a download.
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'core/downloadfromdcthread.cpp')
-rw-r--r-- | core/downloadfromdcthread.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/downloadfromdcthread.cpp b/core/downloadfromdcthread.cpp index e6fa6db4a..fe9da69fb 100644 --- a/core/downloadfromdcthread.cpp +++ b/core/downloadfromdcthread.cpp @@ -96,7 +96,7 @@ static void fill_supported_mobile_list() mobileProductList["Scubapro"] = QStringList({{"G2"}}); mobileProductList["Shearwater"] = - QStringList({{"Perdix"}, {"Perdix AI"}}); + QStringList({{"Petrel"}, {"Petrel 2"}, {"Perdix"}, {"Perdix AI"}}); mobileProductList["Suunto"] = QStringList({{"EON Steel"}}); |