mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-30 22:20:21 +00:00
Add support for the Oceans S1 and McLean Extreme
This updates libdivecomputer to support the Oceans S1 and McLean Extreme divecomputers. It also adds the Oceans S1 to the list of dive computers we reconize by bluetooth name. Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
parent
68b651e494
commit
ac533a6433
2 changed files with 4 additions and 1 deletions
|
@ -107,6 +107,9 @@ static dc_descriptor_t *getDeviceType(QString btName)
|
|||
} else if (btName == "COSMIQ") {
|
||||
vendor = "Deepblu";
|
||||
product = "Cosmiq+";
|
||||
} else if (btName.startsWith("S1")) {
|
||||
vendor = "Oceans";
|
||||
product = "S1";
|
||||
}
|
||||
|
||||
// check if we found a known dive computer
|
||||
|
|
|
@ -1 +1 @@
|
|||
Subproject commit 48e46cf7775452740f67ba72d9c5a0960ebf3718
|
||||
Subproject commit 6935fe717ac73402c589c2ccc435ad8efd60cd50
|
Loading…
Reference in a new issue