add "LE Device Address" 0x1B to advertising data types

Fork of BLE_API by Bluetooth Low Energy

Revision:
1068:704b281b4ba0
Parent:
1067:350b4b04eeda
Child:
1069:ec5549427b4a
diff -r 350b4b04eeda -r 704b281b4ba0 ble/DiscoveredCharacteristicDescriptor.h
--- a/ble/DiscoveredCharacteristicDescriptor.h	Mon Jan 11 08:51:39 2016 +0000
+++ b/ble/DiscoveredCharacteristicDescriptor.h	Mon Jan 11 08:51:39 2016 +0000
@@ -23,7 +23,6 @@
 #include "GattClient.h"
 #include "CharacteristicDescriptorDiscovery.h"
 
-
 /**
  *
  */
@@ -36,23 +35,23 @@
 
     }
 
-    GattClient* client() {
+    GattClient* getGattClient() {
         return _client;
     }
 
-    const GattClient* client() const {
+    const GattClient* getGattClient() const {
         return _client;
     }
 
-    Gap::Handle_t connectionHandle() const {
+    Gap::Handle_t getConnectionHandle() const {
         return _connectionHandle;
     }
 
-    const UUID& uuid(void) const {
+    const UUID& getUUID(void) const {
         return _uuid;
     }
 
-    GattAttribute::Handle_t gattHandle() const {
+    GattAttribute::Handle_t getAttributeHandle() const {
         return _gattHandle;
     }