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:
1150:45226f13ae5c
Parent:
1149:c188d5238d62
Child:
1155:e28c7aac64ab
--- a/ble/SafeBool.h	Wed Apr 06 19:14:17 2016 +0100
+++ b/ble/SafeBool.h	Wed Apr 06 19:14:18 2016 +0100
@@ -109,6 +109,7 @@
 template <typename T, typename U>
 void operator==(const SafeBool<T>& lhs,const SafeBool<U>& rhs) {
     lhs.invalidTag();
+    // return false;
 }
 
 /**
@@ -117,6 +118,7 @@
 template <typename T,typename U>
 void operator!=(const SafeBool<T>& lhs,const SafeBool<U>& rhs) {
     lhs.invalidTag();
+    // return false;
 }
 
 #endif /* BLE_API_SAFE_BOOL_H_ */
\ No newline at end of file