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:
vcoubard
Date:
Wed Apr 06 19:14:41 2016 +0100
Parent:
1156:e1ea38b576c6
Child:
1158:fc9f3dbbb34e
Commit message:
Synchronized with git rev be76a698
Author: Andres Amaya Garcia
Fix doxygen warnings in BLEProtocol.h

Changed in this revision

ble/BLEProtocol.h Show annotated file Show diff for this revision Revisions of this file
--- a/ble/BLEProtocol.h	Wed Apr 06 19:14:38 2016 +0100
+++ b/ble/BLEProtocol.h	Wed Apr 06 19:14:41 2016 +0100
@@ -57,6 +57,14 @@
         AddressType_t  type;    /**< @ref AddressType_t */
         AddressBytes_t address; /**< @ref AddressBytes_t */
 
+        /**
+         * Construct an Address_t object with the supplied type and address.
+         *
+         * @param[in] typeIn
+         *              The BLE address type.
+         * @param[in] addressIn
+         *              The BLE address.
+         */
         Address_t(AddressType_t typeIn, const AddressBytes_t& addressIn) : type(typeIn) {
             std::copy(addressIn, addressIn + ADDR_LEN, address);
         }