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

Fork of BLE_API by Bluetooth Low Energy

Revision:
1051:62b44b3be31b
Parent:
1048:efb29faf12fc
Child:
1052:b55e1ad3e1b3
--- a/ble/GattClient.h	Mon Jan 11 08:51:29 2016 +0000
+++ b/ble/GattClient.h	Mon Jan 11 08:51:30 2016 +0000
@@ -308,7 +308,8 @@
     /**
      * Is characteristic descriptor discovery currently active?
      */
-    virtual bool isCharacteristicDiscoveryActive(const DiscoveredCharacteristic& characteristic) const {
+    virtual bool isCharacteristicDescriptorsDiscoveryActive(const DiscoveredCharacteristic& characteristic) const 
+     {
         (void) characteristic;
         return false; /* Requesting action from porter(s): override this API if this capability is supported. */
     }
@@ -317,7 +318,7 @@
      * Terminate an ongoing characteristic descriptor discovery. This should result 
      * in an invocation of the TerminationCallback if characteristic descriptor discovery is active.
      */
-    virtual void terminateCharacteristicDiscovery(const DiscoveredCharacteristic& characteristic) {
+    virtual void terminateCharacteristicDescriptorsDiscovery(const DiscoveredCharacteristic& characteristic) {
         /* Requesting action from porter(s): override this API if this capability is supported. */
         (void) characteristic;
     }