High level Bluetooth Low Energy API and radio abstraction layer
Fork of BLE_API by
Revision 801:6fa829aa0346, committed 2015-09-29
- Comitter:
- rgrover1
- Date:
- Tue Sep 29 09:47:50 2015 +0100
- Parent:
- 800:3bf180b7a3a5
- Child:
- 802:94f23e2ff37e
- Commit message:
- Synchronized with git rev 626c5514
Author: Rohit Grover
minor improvement to comments for AuthCallbackParams.
Changed in this revision
ble/GattCallbackParamTypes.h | Show annotated file Show diff for this revision Revisions of this file |
--- a/ble/GattCallbackParamTypes.h Tue Sep 29 09:47:50 2015 +0100 +++ b/ble/GattCallbackParamTypes.h Tue Sep 29 09:47:50 2015 +0100 @@ -65,8 +65,9 @@ uint16_t offset; /**< Offset for the write operation. */ uint16_t len; /**< Length of the incoming data. */ const uint8_t *data; /**< Incoming data, variable length. */ - GattAuthCallbackReply_t authorizationReply; /* This is the out parameter which needs to be set to true by the callback if the - * request is to proceed; false otherwise. */ + GattAuthCallbackReply_t authorizationReply; /* This is the out parameter which needs to be set to + * AUTH_CALLBACK_REPLY_SUCCESS by the callback if the + * request is to proceed. */ }; struct GattReadAuthCallbackParams { @@ -75,8 +76,9 @@ 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. */ - GattAuthCallbackReply_t authorizationReply; /* This is the out parameter which needs to be set to true by the callback if the - * request is to proceed; false otherwise. */ + GattAuthCallbackReply_t authorizationReply; /* This is the out parameter which needs to be set to + * AUTH_CALLBACK_REPLY_SUCCESS by the callback if the + * request is to proceed. */ }; /* For encapsulating handle-value update events (notifications or indications) generated at the remote server. */