Nordic BLE: Disable secure connection support on NRF51.

pull/6932/head
Vincent Coubard 2018-05-21 10:34:09 +01:00
parent 4c1a309117
commit 14a1095c31
1 changed files with 1 additions and 1 deletions

View File

@ -373,7 +373,7 @@ ble_error_t nRF5xSecurityManager::cancel_pairing(
ble_error_t nRF5xSecurityManager::get_secure_connections_support(
bool &enabled
) {
enabled = true;
enabled = false;
return BLE_ERROR_NONE;
}