Skip to content

Commit dbf4a8d

Browse files
committed
BLE: Implement CordioSM get_secure_connection_support.
1 parent 766b876 commit dbf4a8d

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

features/FEATURE_BLE/targets/TARGET_CORDIO/source/CordioPalSecurityManager.cpp

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,9 @@ ble_error_t CordioSecurityManager::set_secure_connections_support(
9999
ble_error_t CordioSecurityManager::get_secure_connections_support(
100100
bool &enabled
101101
) {
102-
return BLE_ERROR_NOT_IMPLEMENTED;
102+
// FIXME: should depend of the controller
103+
enabled = false;
104+
return BLE_ERROR_NONE;
103105
}
104106

105107
////////////////////////////////////////////////////////////////////////////

0 commit comments

Comments
 (0)