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

Fork of BLE_API by Bluetooth Low Energy

Revision:
737:79d95f9b93be
Parent:
716:11b41f651697
Child:
785:c74f567162d4
--- a/ble/GattCallbackParamTypes.h	Mon Jul 06 10:10:35 2015 +0100
+++ b/ble/GattCallbackParamTypes.h	Mon Jul 06 10:10:35 2015 +0100
@@ -75,4 +75,12 @@
                                                   * request is to proceed; false otherwise. */
 };
 
+/* For encapsulating handle-value update events (notifications or indications) generated at the remote server. */
+struct GattHVXCallbackParams {
+  GattAttribute::Handle_t  handle; /**< Attribute Handle to which the HVx operation applies. */
+  HVXType_t                type;   /**< Indication or Notification, see @ref HVXType_t. */
+  uint16_t                 len;    /**< Attribute data length. */
+  const uint8_t           *data;   /**< Attribute data, variable length. */
+};
+
 #endif /*__GATT_CALLBACK_PARAM_TYPES_H__*/
\ No newline at end of file