BLE: Implement CordioSM get_secure_connection_support.

pull/6188/head
Vincent Coubard 2018-03-01 10:22:42 +00:00
parent 766b8765ad
commit dbf4a8da49
1 changed files with 3 additions and 1 deletions

View File

@ -99,7 +99,9 @@ ble_error_t CordioSecurityManager::set_secure_connections_support(
ble_error_t CordioSecurityManager::get_secure_connections_support(
bool &enabled
) {
return BLE_ERROR_NOT_IMPLEMENTED;
// FIXME: should depend of the controller
enabled = false;
return BLE_ERROR_NONE;
}
////////////////////////////////////////////////////////////////////////////