mirror of https://github.com/ARMmbed/mbed-os.git
Merge pull request #10340 from paul-szczepanek-arm/fix-negotiate-mtu
BLE: fix missing implementation callpull/10354/head
commit
47838ea4be
|
@ -124,6 +124,13 @@ void GattClient<Impl>::terminateCharacteristicDescriptorDiscovery(
|
||||||
return impl()->terminateCharacteristicDescriptorDiscovery_(characteristic);
|
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>
|
template<class Impl>
|
||||||
ble_error_t GattClient<Impl>::reset(void)
|
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>
|
template<class Impl>
|
||||||
ble_error_t GattClient<Impl>::read_(
|
ble_error_t GattClient<Impl>::read_(
|
||||||
ble::connection_handle_t connHandle,
|
ble::connection_handle_t connHandle,
|
||||||
|
|
Loading…
Reference in New Issue