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/SecurityManager.h
- Revision:
- 734:4872b70437ce
- Parent:
- 716:11b41f651697
- Child:
- 735:15bfcec377d5
--- a/ble/SecurityManager.h Mon Jul 06 10:10:35 2015 +0100 +++ b/ble/SecurityManager.h Mon Jul 06 10:10:35 2015 +0100 @@ -105,6 +105,12 @@ bool requireMITM = true, SecurityIOCapabilities_t iocaps = IO_CAPS_NONE, const Passkey_t passkey = NULL) { + /* avoid compiler warnings about unused variables */ + (void)enableBonding; + (void)requireMITM; + (void)iocaps; + (void)passkey; + return BLE_ERROR_NOT_IMPLEMENTED; /* default implementation; override this if security is supported. */ } @@ -117,6 +123,10 @@ * @return BLE_SUCCESS Or appropriate error code indicating reason for failure. */ virtual ble_error_t getLinkSecurity(Gap::Handle_t connectionHandle, LinkSecurityStatus_t *securityStatusP) { + /* avoid compiler warnings about unused variables */ + (void)connectionHandle; + (void)securityStatusP; + return BLE_ERROR_NOT_IMPLEMENTED; /* default implementation; override this if security is supported. */ }