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
Revision 1051:62b44b3be31b, committed 2016-01-11
- Comitter:
- vcoubard
- Date:
- Mon Jan 11 08:51:30 2016 +0000
- Parent:
- 1050:37101a458dfb
- Child:
- 1052:b55e1ad3e1b3
- Commit message:
- Synchronized with git rev 16f99ad6
Author: Vincent Coubard
Rename characteristic descriptors discovery activity and termination
function
Changed in this revision
ble/GattClient.h | Show annotated file Show diff for this revision Revisions of this file |
--- a/ble/GattClient.h Mon Jan 11 08:51:29 2016 +0000 +++ b/ble/GattClient.h Mon Jan 11 08:51:30 2016 +0000 @@ -308,7 +308,8 @@ /** * Is characteristic descriptor discovery currently active? */ - virtual bool isCharacteristicDiscoveryActive(const DiscoveredCharacteristic& characteristic) const { + virtual bool isCharacteristicDescriptorsDiscoveryActive(const DiscoveredCharacteristic& characteristic) const + { (void) characteristic; return false; /* Requesting action from porter(s): override this API if this capability is supported. */ } @@ -317,7 +318,7 @@ * Terminate an ongoing characteristic descriptor discovery. This should result * in an invocation of the TerminationCallback if characteristic descriptor discovery is active. */ - virtual void terminateCharacteristicDiscovery(const DiscoveredCharacteristic& characteristic) { + virtual void terminateCharacteristicDescriptorsDiscovery(const DiscoveredCharacteristic& characteristic) { /* Requesting action from porter(s): override this API if this capability is supported. */ (void) characteristic; }