BLE: reintroduce default implementation GattClient::discoverServices.

pull/13475/head
Vincent Coubard 2020-09-07 14:32:18 +01:00
parent 4bd7f8cfc4
commit 904b7f5163
1 changed files with 10 additions and 0 deletions

View File

@ -1105,6 +1105,16 @@ ble_error_t GattClient::discoverServices(
);
}
ble_error_t GattClient::discoverServices(
ble::connection_handle_t connectionHandle,
ServiceDiscovery::ServiceCallback_t callback,
GattAttribute::Handle_t startHandle,
GattAttribute::Handle_t endHandle
)
{
return BLE_ERROR_NOT_IMPLEMENTED;
}
bool GattClient::isServiceDiscoveryActive() const
{
ProcedureControlBlock *pcb = control_blocks;