High level Bluetooth Low Energy API and radio abstraction layer

Dependents:   BLE_ANCS_SDAPI BLE_temperature BLE_HeartRate BLE_ANCS_SDAPI_IRC ... more

Overview

The BLE_API is a high level abstraction for using Bluetooth Low Energy on multiple platforms. For details and examples using the BLE_API please see the BLE_API Summary Page. Or click on the API Documentation tab above.

Supported Services

Supported services can be found in the BLE_API/services folder.

Revision:
1068:704b281b4ba0
Parent:
1067:350b4b04eeda
Child:
1069:ec5549427b4a
--- a/ble/DiscoveredCharacteristicDescriptor.h	Mon Jan 11 08:51:39 2016 +0000
+++ b/ble/DiscoveredCharacteristicDescriptor.h	Mon Jan 11 08:51:39 2016 +0000
@@ -23,7 +23,6 @@
 #include "GattClient.h"
 #include "CharacteristicDescriptorDiscovery.h"
 
-
 /**
  *
  */
@@ -36,23 +35,23 @@
 
     }
 
-    GattClient* client() {
+    GattClient* getGattClient() {
         return _client;
     }
 
-    const GattClient* client() const {
+    const GattClient* getGattClient() const {
         return _client;
     }
 
-    Gap::Handle_t connectionHandle() const {
+    Gap::Handle_t getConnectionHandle() const {
         return _connectionHandle;
     }
 
-    const UUID& uuid(void) const {
+    const UUID& getUUID(void) const {
         return _uuid;
     }
 
-    GattAttribute::Handle_t gattHandle() const {
+    GattAttribute::Handle_t getAttributeHandle() const {
         return _gattHandle;
     }