File tree Expand file tree Collapse file tree 1 file changed +14
-0
lines changed
features/FEATURE_BLE/source Expand file tree Collapse file tree 1 file changed +14
-0
lines changed Original file line number Diff line number Diff line change @@ -124,6 +124,13 @@ void GattClient<Impl>::terminateCharacteristicDescriptorDiscovery(
124
124
return impl ()->terminateCharacteristicDescriptorDiscovery_ (characteristic);
125
125
}
126
126
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
+
127
134
template <class Impl >
128
135
ble_error_t GattClient<Impl>::reset(void )
129
136
{
@@ -179,6 +186,13 @@ void GattClient<Impl>::terminateServiceDiscovery_(void)
179
186
{
180
187
}
181
188
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
+
182
196
template <class Impl >
183
197
ble_error_t GattClient<Impl>::read_(
184
198
ble::connection_handle_t connHandle,
You can’t perform that action at this time.
0 commit comments