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.
Fork of BLE_API by
Diff: ble/DiscoveredCharacteristic.h
- Revision:
- 1158:fc9f3dbbb34e
- Parent:
- 1156:e1ea38b576c6
- Child:
- 1177:f9060dc8c5ab
diff -r a37be30efc66 -r fc9f3dbbb34e ble/DiscoveredCharacteristic.h --- 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. */