Lancaster University's fork of the mbed BLE API. Lives on github, https://github.com/lancaster-university/BLE_API
Dependents: microbit-dal microbit-dal microbit-ble-open microbit-dal ... more
Fork of BLE_API by
Diff: ble/DiscoveredCharacteristic.h
- Revision:
- 970:b3e45745026d
- Parent:
- 969:61f13bc8edbf
- Child:
- 976:043b3bd94ee0
diff -r 61f13bc8edbf -r b3e45745026d ble/DiscoveredCharacteristic.h --- a/ble/DiscoveredCharacteristic.h Thu Nov 26 12:52:35 2015 +0000 +++ b/ble/DiscoveredCharacteristic.h Thu Nov 26 12:52:35 2015 +0000 @@ -83,8 +83,6 @@ */ ble_error_t read(uint16_t offset = 0) const; - ble_error_t read(uint16_t offset, const GattClient::ReadCallback_t& onRead) const; - /** * Perform a write without response procedure. * @@ -137,11 +135,6 @@ */ ble_error_t write(uint16_t length, const uint8_t *value) const; - /** - * Same as above but register the callback wich will be called once the data has been written - */ - ble_error_t write(uint16_t length, const uint8_t *value, const GattClient::WriteCallback_t& onRead) const; - void setupLongUUID(UUID::LongUUIDBytes_t longUUID) { uuid.setupLong(longUUID); }