mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
Add support for the new Suunto D5
This is just a trivial update to recognize the BT name, and a libdivecomputer submodule update to get the updates to libdivecomputer to recognize the new USB IDs etc. Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
parent
2feedf46fa
commit
9590709e8c
2 changed files with 6 additions and 1 deletions
|
@ -56,6 +56,11 @@ static dc_descriptor_t *getDeviceType(QString btName)
|
|||
product = "EON Core";
|
||||
}
|
||||
|
||||
if (btName.startsWith("Suunto D5")) {
|
||||
vendor = "Suunto";
|
||||
product = "D5";
|
||||
}
|
||||
|
||||
if (btName.startsWith("G2") || btName.startsWith("Aladin") || btName.startsWith("HUD")) {
|
||||
vendor = "Scubapro";
|
||||
if (btName.startsWith("G2")) product = "G2";
|
||||
|
|
|
@ -1 +1 @@
|
|||
Subproject commit 92cf2f8fa1c100ee95edb3efa78843e0f5b8a921
|
||||
Subproject commit 1194585595f7a26f3ec7f96b5ad6e8f689a70258
|
Loading…
Add table
Reference in a new issue