Merge pull request #10340 from paul-szczepanek-arm/fix-negotiate-mtu

BLE: fix missing implementation call
pull/10354/head
Martin Kojtal 2019-04-09 10:58:59 +02:00 committed by GitHub
commit 47838ea4be
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 14 additions and 0 deletions

View File

@ -124,6 +124,13 @@ void GattClient<Impl>::terminateCharacteristicDescriptorDiscovery(
return impl()->terminateCharacteristicDescriptorDiscovery_(characteristic);
}
template<class Impl>
ble_error_t GattClient<Impl>::negotiateAttMtu(
ble::connection_handle_t connHandle
) {
return impl()->negotiateAttMtu_(connHandle);
}
template<class Impl>
ble_error_t GattClient<Impl>::reset(void)
{
@ -179,6 +186,13 @@ void GattClient<Impl>::terminateServiceDiscovery_(void)
{
}
template<class Impl>
ble_error_t GattClient<Impl>::negotiateAttMtu_(
ble::connection_handle_t connHandle
) {
return BLE_ERROR_NOT_IMPLEMENTED;
}
template<class Impl>
ble_error_t GattClient<Impl>::read_(
ble::connection_handle_t connHandle,