Skip to content

Commit 904b7f5

Browse files
committed
BLE: reintroduce default implementation GattClient::discoverServices.
1 parent 4bd7f8c commit 904b7f5

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

connectivity/FEATURE_BLE/source/generic/GattClientImpl.cpp

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1105,6 +1105,16 @@ ble_error_t GattClient::discoverServices(
11051105
);
11061106
}
11071107

1108+
ble_error_t GattClient::discoverServices(
1109+
ble::connection_handle_t connectionHandle,
1110+
ServiceDiscovery::ServiceCallback_t callback,
1111+
GattAttribute::Handle_t startHandle,
1112+
GattAttribute::Handle_t endHandle
1113+
)
1114+
{
1115+
return BLE_ERROR_NOT_IMPLEMENTED;
1116+
}
1117+
11081118
bool GattClient::isServiceDiscoveryActive() const
11091119
{
11101120
ProcedureControlBlock *pcb = control_blocks;

0 commit comments

Comments
 (0)