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:
768:8914bea92690
Child:
770:079b714e9c1a
Commit message:
Synchronized with git rev 24a98921
Author: Rohit Grover
fix #64: GapAdvertisingData::getPayload() should return the payload pointer regardless of len.

Changed in this revision

ble/GapAdvertisingData.h Show annotated file Show diff for this revision Revisions of this file
--- a/ble/GapAdvertisingData.h	Fri Aug 07 15:55:21 2015 +0100
+++ b/ble/GapAdvertisingData.h	Fri Aug 07 15:55:21 2015 +0100
@@ -328,7 +328,7 @@
      * Returns a pointer to the the current payload
      */
     const uint8_t *getPayload(void) const {
-        return (_payloadLen > 0) ? _payload : NULL;
+        return _payload;
     }
 
     /**