Skip to content

Commit 47838ea

Browse files
authored
Merge pull request #10340 from paul-szczepanek-arm/fix-negotiate-mtu
BLE: fix missing implementation call
2 parents f4fa6c9 + 217b295 commit 47838ea

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

features/FEATURE_BLE/source/GattClient.tpp

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -124,6 +124,13 @@ void GattClient<Impl>::terminateCharacteristicDescriptorDiscovery(
124124
return impl()->terminateCharacteristicDescriptorDiscovery_(characteristic);
125125
}
126126

127+
template<class Impl>
128+
ble_error_t GattClient<Impl>::negotiateAttMtu(
129+
ble::connection_handle_t connHandle
130+
) {
131+
return impl()->negotiateAttMtu_(connHandle);
132+
}
133+
127134
template<class Impl>
128135
ble_error_t GattClient<Impl>::reset(void)
129136
{
@@ -179,6 +186,13 @@ void GattClient<Impl>::terminateServiceDiscovery_(void)
179186
{
180187
}
181188

189+
template<class Impl>
190+
ble_error_t GattClient<Impl>::negotiateAttMtu_(
191+
ble::connection_handle_t connHandle
192+
) {
193+
return BLE_ERROR_NOT_IMPLEMENTED;
194+
}
195+
182196
template<class Impl>
183197
ble_error_t GattClient<Impl>::read_(
184198
ble::connection_handle_t connHandle,

0 commit comments

Comments
 (0)