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:
1067:350b4b04eeda
Parent:
1044:15e4bd5951ac
Child:
1068:704b281b4ba0
--- a/ble/DiscoveredCharacteristicDescriptor.h	Mon Jan 11 08:51:39 2016 +0000
+++ b/ble/DiscoveredCharacteristicDescriptor.h	Mon Jan 11 08:51:39 2016 +0000
@@ -25,22 +25,22 @@
 
 
 /**
- * 
+ *
  */
 class DiscoveredCharacteristicDescriptor {
 
 public:
     DiscoveredCharacteristicDescriptor(
-        GattClient* client, Gap::Handle_t connectionHandle,  GattAttribute::Handle_t gattHandle, const UUID& uuid) : 
+        GattClient* client, Gap::Handle_t connectionHandle,  GattAttribute::Handle_t gattHandle, const UUID& uuid) :
         _client(client), _connectionHandle(connectionHandle), _uuid(uuid), _gattHandle(gattHandle) {
 
     }
 
-    GattClient* client() { 
+    GattClient* client() {
         return _client;
     }
 
-    const GattClient* client() const { 
+    const GattClient* client() const {
         return _client;
     }