Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Fork of BLE_API by
Diff: ble/GattClient.h
- Revision:
- 1051:62b44b3be31b
- Parent:
- 1048:efb29faf12fc
- Child:
- 1052:b55e1ad3e1b3
--- 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; }