BLE - Cordio PAL SM: Implement send_keypress_notification

pull/6188/head
Vincent Coubard 2018-03-01 14:54:06 +00:00
parent 9043714443
commit ecc7118490
1 changed files with 5 additions and 1 deletions

View File

@ -382,10 +382,14 @@ ble_error_t CordioSecurityManager::confirmation_entered(
return BLE_ERROR_NOT_IMPLEMENTED;
}
// FIXME: remove when declaration from the stack is available
extern "C" void DmSecKeypressReq(dmConnId_t connId, uint8_t keypressType);
ble_error_t CordioSecurityManager::send_keypress_notification(
connection_handle_t connection, Keypress_t keypress
) {
return BLE_ERROR_NOT_IMPLEMENTED;
DmSecKeypressReq(connection, keypress);
return BLE_ERROR_NONE;
}
ble_error_t CordioSecurityManager::oob_data_verified(