diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2018-10-06 11:43:48 -0700 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2018-10-06 19:38:28 -0700 |
commit | cd553444108ed7cd11a977f64ac0b742c1141117 (patch) | |
tree | d6ab9a1c227a8ad90a18b8c75e31b62ee1866533 /core/qt-ble.cpp | |
parent | 88f4c06b993daa1d669aad71f90d92c4ebdb4c9c (diff) | |
download | subsurface-cd553444108ed7cd11a977f64ac0b742c1141117.tar.gz |
qt-ble: add support for libdivecomputer 'set_timeout()' function
Because some BLE operations can be very slow (device and service
discovery etc), we have some rather excessive default timeout for BLE
(currently set to 12 seconds).
But once we actually have started doing IO, that long timeout can be a
big performance problem, when the libdivecomputer backend has support
for retry and packet loss.
For that reason, libdivecomputer has a 'set_timeout()' function that
allows the divecomputer backend to say how quickly it expects the dive
computer to answer before the backend will start resending packets.
Let's just implement that for the actual IO side of BLE too. The
default timeout value remains the general BLE timeout, and this only
affects the actual IO phase, but it improves things enormously for the
case where there is packet loss at that point.
For example, on the Aqualung i770R, the timeout for packet loss ends up
now being just one second rather than the full 12 seconds of default BLE
timeout. Which gets the retry going much faster.
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'core/qt-ble.cpp')
-rw-r--r-- | core/qt-ble.cpp | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/core/qt-ble.cpp b/core/qt-ble.cpp index 0ecad50c3..ba75c8472 100644 --- a/core/qt-ble.cpp +++ b/core/qt-ble.cpp @@ -131,6 +131,7 @@ BLEObject::BLEObject(QLowEnergyController *c, dc_user_device_t *d) device = d; debugCounter = 0; isCharacteristicWritten = false; + timeout = BLE_TIMEOUT; } BLEObject::~BLEObject() @@ -203,7 +204,7 @@ dc_status_t BLEObject::read(void *data, size_t size, size_t *actual) qDebug() << QTime::currentTime() << "packet WAIT"; - WAITFOR(!receivedPackets.isEmpty(), BLE_TIMEOUT); + WAITFOR(!receivedPackets.isEmpty(), timeout); if (receivedPackets.isEmpty()) return DC_STATUS_IO; } @@ -516,6 +517,17 @@ static void checkThreshold() } } +/* + * NOTE! The 'set_timeout()' function only affects the timeout + * for qt_ble_read(), not for the various general BLE operations. + */ +dc_status_t qt_ble_set_timeout(void *io, int timeout) +{ + BLEObject *ble = (BLEObject *) io; + ble->set_timeout(timeout); + return DC_STATUS_SUCCESS; +} + dc_status_t qt_ble_read(void *io, void* data, size_t size, size_t *actual) { checkThreshold(); |