Minor temporary patch to allow DFU packet callback

Fork of BLE_API by Bluetooth Low Energy

Revision:
265:a0504765a357
Parent:
264:eea11cfb6753
Child:
292:b5ee2ada4f33
--- a/public/GattCharacteristicCallbackParams.h	Wed Jan 21 09:32:50 2015 +0000
+++ b/public/GattCharacteristicCallbackParams.h	Wed Jan 21 09:32:50 2015 +0000
@@ -44,7 +44,9 @@
 
 struct GattCharacteristicReadAuthCBParams {
     GattAttribute::Handle_t  charHandle;
-    uint16_t                 offset; /**< Offset for the write operation. */
+    uint16_t                 offset; /**< Offset for the read operation. */
+    uint16_t                 len;    /**< Optional: new length of the outgoing data. */
+    uint8_t                 *data;   /**< Optional: new outgoing data. Leave at NULL if data is unchanged. */
     bool                     authorizationReply; /* This is the out parameter which needs to be set to true by the callback if the
                                                   * request is to proceed; false otherwise. */
 };