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:
932:68a113707ba5
Parent:
924:f4a901a3e6cd
Child:
933:3ec277a0d780
--- a/ble/FunctionPointerWithContext.h	Thu Nov 26 12:52:05 2015 +0000
+++ b/ble/FunctionPointerWithContext.h	Thu Nov 26 12:52:05 2015 +0000
@@ -104,11 +104,6 @@
     /** Same as above, workaround for mbed os FunctionPointer implementation. */
     void call(ContextType context) {
         _caller(this, context);
-
-        /* Propagate the call to next in the chain. */
-        if (_next) {
-            _next->call(context);
-        }
     }
 
     typedef void (FunctionPointerWithContext::*bool_type)() const;