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 1128:8b07ab5a696d, committed 2016-01-12
- Comitter:
- vcoubard
- Date:
- Tue Jan 12 19:47:51 2016 +0000
- Parent:
- 1127:0f8fed8cda0d
- Child:
- 1129:85ee56c4f469
- Commit message:
- Synchronized with git rev 17e37360
Author: Vincent Coubard
Merge pull request #161 from ARMmbed/develop
merge branch develop (v2.4.0)
Changed in this revision
ble/SecurityManager.h | Show annotated file Show diff for this revision Revisions of this file |
--- a/ble/SecurityManager.h Tue Jan 12 19:47:51 2016 +0000 +++ b/ble/SecurityManager.h Tue Jan 12 19:47:51 2016 +0000 @@ -163,26 +163,6 @@ return BLE_ERROR_NOT_IMPLEMENTED; /* Requesting action from porters: override this API if security is supported. */ } - /** - * Get a list of addresses from all peers in the bond table. - * - * @param[in/out] addresses - * (on input) addresses.capacity contains the maximum - * number of addresses to be returned. - * (on output) The populated table with copies of the - * addresses in the implementation's whitelist. - * - * @retval BLE_ERROR_NONE On success, else an error code indicating reason for failure. - * @retval BLE_ERROR_INVALID_STATE If the API is called without module initialization or - * application registration. - */ - virtual ble_error_t getAddressesFromBondTable(Gap::Whitelist_t &addresses) const { - /* Avoid compiler warnings about unused variables */ - (void) addresses; - - return BLE_ERROR_NOT_IMPLEMENTED; /* Requesting action from porters: override this API if security is supported. */ - } - /* Event callback handlers. */ public: /**