diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2018-04-17 15:57:04 -0700 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2018-04-24 17:54:08 -0700 |
commit | acc343834ae416aa4a17a0cd508c8ddf31f8281d (patch) | |
tree | a55bf94f0fa82cc56f1a2fd87afb2f84a2510fcb /core/libdivecomputer.h | |
parent | 13f5c75ac49d88bd1d1f45e798a5e75b6426aa81 (diff) | |
download | subsurface-acc343834ae416aa4a17a0cd508c8ddf31f8281d.tar.gz |
Actually tie in the new libdivecomputer IO model to open the dive computer device
This creates a new libdivecomputer_device_open() helper, and makes
downloading and configuration use it to open the dive computer device
using the proper protocol.
The IRDA case was tested by Sébastien Dugué - I had initially left it
undone believing that "nobody uses IRDA".
Reported-and-tested-by: Sébastien Dugué <sebastien.dugue.subsurface@gmail.com>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'core/libdivecomputer.h')
-rw-r--r-- | core/libdivecomputer.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/core/libdivecomputer.h b/core/libdivecomputer.h index 3da7fdc7b..1ff9f0fa0 100644 --- a/core/libdivecomputer.h +++ b/core/libdivecomputer.h @@ -59,6 +59,8 @@ dc_status_t ble_packet_open(dc_iostream_t **iostream, dc_context_t *context, con dc_status_t rfcomm_stream_open(dc_iostream_t **iostream, dc_context_t *context, const char* devaddr); dc_status_t ftdi_open(dc_iostream_t **iostream, dc_context_t *context); +dc_status_t divecomputer_device_open(device_data_t *data); + #ifdef __cplusplus } #endif |