diff options
author | Berthold Stoeger <bstoeger@mail.tuwien.ac.at> | 2020-10-19 18:42:43 +0200 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2020-10-24 09:51:37 -0700 |
commit | 5a19437311231aed114de8da75e19f94ac04f5aa (patch) | |
tree | ed73c87e92e39188e91c03918c01498ee2b3c5b8 /core/qt-ble.h | |
parent | 8c65558b5c432c1d0e9c6af5939faa56ffecf51a (diff) | |
download | subsurface-5a19437311231aed114de8da75e19f94ac04f5aa.tar.gz |
cleanup: remove dc_user_device_t
The same structure was defined as "struct dc_user_device_t"
and typedefed as "device_data_t". Unify this. Since there
are much more of the latter, remove the former.
Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
Diffstat (limited to 'core/qt-ble.h')
-rw-r--r-- | core/qt-ble.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/core/qt-ble.h b/core/qt-ble.h index 4da51a981..5063a4f55 100644 --- a/core/qt-ble.h +++ b/core/qt-ble.h @@ -18,7 +18,7 @@ class BLEObject : public QObject Q_OBJECT public: - BLEObject(QLowEnergyController *c, dc_user_device_t *); + BLEObject(QLowEnergyController *c, device_data_t *); ~BLEObject(); inline void set_timeout(int value) { timeout = value; } dc_status_t write(const void* data, size_t size, size_t *actual); @@ -50,7 +50,7 @@ private: QLowEnergyService *preferred = nullptr; QList<QByteArray> receivedPackets; bool isCharacteristicWritten; - dc_user_device_t *device; + device_data_t *device; unsigned int hw_credit = 0; unsigned int desc_written = 0; int timeout; @@ -65,7 +65,7 @@ private: extern "C" { -dc_status_t qt_ble_open(void **io, dc_context_t *context, const char *devaddr, dc_user_device_t *user_device); +dc_status_t qt_ble_open(void **io, dc_context_t *context, const char *devaddr, device_data_t *user_device); dc_status_t qt_ble_set_timeout(void *io, int timeout); dc_status_t qt_ble_poll(void *io, int timeout); dc_status_t qt_ble_read(void *io, void* data, size_t size, size_t *actual); |