Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependents: BLE_HeartRate_IDB04A1
Fork of BLE_API by
Revision 1158:fc9f3dbbb34e, committed 2016-04-06
- Comitter:
- vcoubard
- Date:
- Wed Apr 06 19:14:43 2016 +0100
- Parent:
- 1157:a37be30efc66
- Child:
- 1159:1aa7f8be1f76
- Commit message:
- Synchronized with git rev ed7b5d10
Author: Andres Amaya Garcia
Fix doxygen warnings in DiscoveredCharacteristic.h
Changed in this revision
| ble/DiscoveredCharacteristic.h | Show annotated file Show diff for this revision Revisions of this file |
--- 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. */
