mirror of https://github.com/ARMmbed/mbed-os.git
fix missing implementation call
parent
0066ba9b0d
commit
b6836d9f83
|
|
@ -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)
|
||||||
{
|
{
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue