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:15:16 2016 +0100
Parent:
1170:e8f2db0e8e11
Child:
1172:4aad76f757e6
Commit message:
Synchronized with git rev f54eeed8
Author: Andres Amaya Garcia
Remove @ref doxygen tags

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:15:13 2016 +0100
+++ b/ble/BLEProtocol.h	Wed Apr 06 19:15:16 2016 +0100
@@ -51,11 +51,11 @@
     typedef uint8_t AddressBytes_t[ADDR_LEN]; /**< 48-bit address, in LSB format. */
 
     /**
-     * BLE address. It contains an address-type (@ref AddressType_t) and bytes (@ref AddressBytes_t).
+     * BLE address. It contains an address-type (AddressType_t) and bytes (AddressBytes_t).
      */
     struct Address_t {
-        AddressType_t  type;    /**< @ref AddressType_t */
-        AddressBytes_t address; /**< @ref AddressBytes_t */
+        AddressType_t  type;    /**< The type of the BLE address. */
+        AddressBytes_t address; /**< The BLE address. */
 
         /**
          * Construct an Address_t object with the supplied type and address.
@@ -69,6 +69,9 @@
             std::copy(addressIn, addressIn + ADDR_LEN, address);
         }
 
+        /**
+         * Empty constructor.
+         */
         Address_t() : type(), address() {
         }
     };