High level Bluetooth Low Energy API and radio abstraction layer

Fork of BLE_API by Bluetooth Low Energy

Revision:
1158:fc9f3dbbb34e
Parent:
1156:e1ea38b576c6
Child:
1177:f9060dc8c5ab
--- a/ble/DiscoveredCharacteristic.h	Wed Apr 06 19:14:41 2016 +0100
+++ b/ble/DiscoveredCharacteristic.h	Wed Apr 06 19:14:43 2016 +0100
@@ -29,19 +29,23 @@
  * discovery procedure (see GattClient::launchServiceDiscovery ).
  *
  * @details Provide detailed informations about a discovered characteristic like:
- *     - Its UUID (see #getUUID).
+ *     - Its UUID (see getUUID()).
  *     - The most important handles of the characteristic definition
- *       (see #getDeclHandle, #getValueHandle, #getLastHandle )
- *     - Its properties (see #getProperties).
+ *       (see getDeclHandle(), getValueHandle(), getLastHandle())
+ *     - Its properties (see getProperties()).
  * This class also provide functions to operate on the characteristic:
- *     - Read the characteristic value (see #read)
- *     - Writing a characteristic value (see #write or #writeWoResponse)
+ *     - Read the characteristic value (see read())
+ *     - Writing a characteristic value (see write() or writeWoResponse())
  *     - Discover descriptors inside the characteristic definition. These descriptors
  *       extends the characteristic. More information about descriptor usage is
  *       available in DiscoveredCharacteristicDescriptor class.
  */
 class DiscoveredCharacteristic {
 public:
+    /**
+     * Enumeration that encapsulates the properties of a discovered
+     * characteristic.
+     */
     struct Properties_t {
         uint8_t _broadcast       :1; /**< Broadcasting the value permitted. */
         uint8_t _read            :1; /**< Reading the value permitted. */