From c9b3e512dde1cd4ff87698251f78a81b16645590 Mon Sep 17 00:00:00 2001 From: Emanuel Posescu Date: Thu, 21 Jan 2021 14:30:33 +0200 Subject: [PATCH] Make BLERemoteCharacteristic::getRemoteService() public #3367 (#4735) --- libraries/BLE/src/BLERemoteCharacteristic.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libraries/BLE/src/BLERemoteCharacteristic.h b/libraries/BLE/src/BLERemoteCharacteristic.h index 76dfb6584..1a1c7e8eb 100644 --- a/libraries/BLE/src/BLERemoteCharacteristic.h +++ b/libraries/BLE/src/BLERemoteCharacteristic.h @@ -39,6 +39,7 @@ public: bool canWriteNoResponse(); BLERemoteDescriptor* getDescriptor(BLEUUID uuid); std::map* getDescriptors(); + BLERemoteService* getRemoteService(); uint16_t getHandle(); BLEUUID getUUID(); std::string readValue(); @@ -63,7 +64,6 @@ private: // Private member functions void gattClientEventHandler(esp_gattc_cb_event_t event, esp_gatt_if_t gattc_if, esp_ble_gattc_cb_param_t* evtParam); - BLERemoteService* getRemoteService(); void removeDescriptors(); void retrieveDescriptors(); -- GitLab