summaryrefslogtreecommitdiffstats
path: root/libdivecomputer.h
diff options
context:
space:
mode:
authorGravatar Claudiu Olteanu <olteanu.claudiu@ymail.com>2015-07-06 17:07:34 +0300
committerGravatar Dirk Hohndel <dirk@hohndel.org>2015-07-06 08:37:42 -0700
commit198cc419596dbd17f65124d0495e98fb7acf81c2 (patch)
treea0bb99131eb82932f6f0894c95b85310a25e6ac5 /libdivecomputer.h
parentdff4e5f33eee0ba112ddd2265410a5e858d6c98f (diff)
downloadsubsurface-198cc419596dbd17f65124d0495e98fb7acf81c2.tar.gz
Implement the custom Bluetooth serial communication and use it
Create a custom Bluetooth serial communication using the QTBluetooth API and use it when the Bluetooth download mode is enabled. First try to connect on RFCOMM channel 1 because this is the default RFCOMM channel of SPP service for most devices. If this doesn't work try again on RFCOMM channel number 5 because it could be a Petrel2 device. Add a fake open function for the custom implementation. This is used when the selected device is HW OSTC 2N and the Bluetooth mode is activated, then fake the open call of the serial device. Signed-off-by: Claudiu Olteanu <olteanu.claudiu@ymail.com> Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'libdivecomputer.h')
-rw-r--r--libdivecomputer.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/libdivecomputer.h b/libdivecomputer.h
index f5c0cadbe..649d89847 100644
--- a/libdivecomputer.h
+++ b/libdivecomputer.h
@@ -53,6 +53,7 @@ extern const char *progress_bar_text;
extern double progress_bar_fraction;
extern char *logfile_name;
extern char *dumpfile_name;
+extern dc_status_t dc_serial_qt_open(dc_serial_t **out, dc_context_t *context, const char *devaddr);
#ifdef __cplusplus
}