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:
804:58cf17ca7b5f
Parent:
801:6fa829aa0346
Child:
805:de2feb3e6e41
--- a/ble/GattCallbackParamTypes.h	Tue Sep 29 09:47:51 2015 +0100
+++ b/ble/GattCallbackParamTypes.h	Tue Sep 29 09:47:51 2015 +0100
@@ -65,9 +65,8 @@
     uint16_t                 offset; /**< Offset for the write operation. */
     uint16_t                 len;    /**< Length of the incoming data. */
     const uint8_t           *data;   /**< Incoming data, variable length. */
-    GattAuthCallbackReply_t  authorizationReply; /* This is the out parameter which needs to be set to
-                                                  * AUTH_CALLBACK_REPLY_SUCCESS by the callback if the
-                                                  * request is to proceed. */
+    GattAuthCallbackReply_t  authorizationReply; /* This is the out parameter which needs to be set to true by the callback if the
+                                                  * request is to proceed; false otherwise. */
 };
 
 struct GattReadAuthCallbackParams {
@@ -76,9 +75,8 @@
     uint16_t                 offset; /**< Offset for the read operation. */
     uint16_t                 len;    /**< Optional: new length of the outgoing data. */
     uint8_t                 *data;   /**< Optional: new outgoing data. Leave at NULL if data is unchanged. */
-    GattAuthCallbackReply_t  authorizationReply; /* This is the out parameter which needs to be set to
-                                                  * AUTH_CALLBACK_REPLY_SUCCESS by the callback if the
-                                                  * request is to proceed. */
+    GattAuthCallbackReply_t  authorizationReply; /* This is the out parameter which needs to be set to true by the callback if the
+                                                  * request is to proceed; false otherwise. */
 };
 
 /* For encapsulating handle-value update events (notifications or indications) generated at the remote server. */