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:
Thu Nov 26 12:52:34 2015 +0000
Parent:
960:76bbf8c803cf
Child:
962:622ae38b3023
Commit message:
Synchronized with git rev 693a563a
Author: Vincent Coubard
Fix invalid return value

Changed in this revision

ble/CallChainOfFunctionPointersWithContext.h Show annotated file Show diff for this revision Revisions of this file
--- a/ble/CallChainOfFunctionPointersWithContext.h	Thu Nov 26 12:52:34 2015 +0000
+++ b/ble/CallChainOfFunctionPointersWithContext.h	Thu Nov 26 12:52:34 2015 +0000
@@ -124,13 +124,12 @@
                     previous->chainAsNext(current->getNext());
                 }
                 delete current;
-                return true;
+                return;
             }
 
             previous = current;
             current = current->getNext();
         }
-        return false;
     }
 
     /** Clear the call chain (remove all functions in the chain).