We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9043714 commit ecc7118Copy full SHA for ecc7118
features/FEATURE_BLE/targets/TARGET_CORDIO/source/CordioPalSecurityManager.cpp
@@ -382,10 +382,14 @@ ble_error_t CordioSecurityManager::confirmation_entered(
382
return BLE_ERROR_NOT_IMPLEMENTED;
383
}
384
385
+// FIXME: remove when declaration from the stack is available
386
+extern "C" void DmSecKeypressReq(dmConnId_t connId, uint8_t keypressType);
387
+
388
ble_error_t CordioSecurityManager::send_keypress_notification(
389
connection_handle_t connection, Keypress_t keypress
390
) {
- return BLE_ERROR_NOT_IMPLEMENTED;
391
+ DmSecKeypressReq(connection, keypress);
392
+ return BLE_ERROR_NONE;
393
394
395
ble_error_t CordioSecurityManager::oob_data_verified(
0 commit comments