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:
768:8914bea92690
Parent:
742:861ed7eb186d
Child:
904:8b63ba997581
--- 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);
     }
 
     /**