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.

Files at this revision

API Documentation at this revision

Comitter:
rgrover1
Date:
Fri Aug 07 15:55:21 2015 +0100
Parent:
767:d6a79c77d1c3
Child:
769:2d236d9afa9e
Commit message:
Synchronized with git rev 3711ca30
Author: Rohit Grover
deprecate GattClient::onDataWrite() in favour of onDataWritten().

Changed in this revision

ble/GattClient.h Show annotated file Show diff for this revision Revisions of this file
--- a/ble/GattClient.h	Fri Aug 07 15:53:50 2015 +0100
+++ b/ble/GattClient.h	Fri Aug 07 15:55:21 2015 +0100
@@ -251,8 +251,19 @@
      * Setup a callback for write response events.
      * @Note: write commands (issued using writeWoResponse) don't generate a response.
      */
+    void onDataWritten(WriteCallback_t callback) {
+        onDataWriteCallback = callback;
+    }
+
+    /**
+     * Setup a callback for write response events.
+     * @Note: write commands (issued using writeWoResponse) don't generate a response.
+     *
+     * @note: This API is now *deprecated* and will be dropped in the future.
+     * Please use onDataWritten() instead.
+     */
     void onDataWrite(WriteCallback_t callback) {
-        onDataWriteCallback = callback;
+        onDataWritten(callback);
     }
 
     /**