add "LE Device Address" 0x1B to advertising data types
Fork of BLE_API by
Revision 1067:350b4b04eeda, committed 2016-01-11
- Comitter:
- vcoubard
- Date:
- Mon Jan 11 08:51:39 2016 +0000
- Parent:
- 1066:980dd95eb920
- Child:
- 1068:704b281b4ba0
- Commit message:
- Synchronized with git rev 6b6cf34b
Author: Vincent Coubard
Improve description of class DiscoveredCharacteristicDescriptor
Changed in this revision
ble/DiscoveredCharacteristicDescriptor.h | Show annotated file Show diff for this revision Revisions of this file |
--- a/ble/DiscoveredCharacteristicDescriptor.h Mon Jan 11 08:51:39 2016 +0000 +++ b/ble/DiscoveredCharacteristicDescriptor.h Mon Jan 11 08:51:39 2016 +0000 @@ -25,22 +25,22 @@ /** - * + * */ class DiscoveredCharacteristicDescriptor { public: DiscoveredCharacteristicDescriptor( - GattClient* client, Gap::Handle_t connectionHandle, GattAttribute::Handle_t gattHandle, const UUID& uuid) : + GattClient* client, Gap::Handle_t connectionHandle, GattAttribute::Handle_t gattHandle, const UUID& uuid) : _client(client), _connectionHandle(connectionHandle), _uuid(uuid), _gattHandle(gattHandle) { } - GattClient* client() { + GattClient* client() { return _client; } - const GattClient* client() const { + const GattClient* client() const { return _client; }