From 217b295f461f26daa99495b1cf2f6e64bfdbcfd1 Mon Sep 17 00:00:00 2001 From: paul-szczepanek-arm <33840200+paul-szczepanek-arm@users.noreply.github.com> Date: Mon, 8 Apr 2019 14:56:23 +0100 Subject: [PATCH] missing default impl --- features/FEATURE_BLE/source/GattClient.tpp | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/features/FEATURE_BLE/source/GattClient.tpp b/features/FEATURE_BLE/source/GattClient.tpp index 5d38c469e0..8f68af097e 100644 --- a/features/FEATURE_BLE/source/GattClient.tpp +++ b/features/FEATURE_BLE/source/GattClient.tpp @@ -186,6 +186,13 @@ void GattClient::terminateServiceDiscovery_(void) { } +template +ble_error_t GattClient::negotiateAttMtu_( + ble::connection_handle_t connHandle +) { + return BLE_ERROR_NOT_IMPLEMENTED; +} + template ble_error_t GattClient::read_( ble::connection_handle_t connHandle,