This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

LAUNCHXL-CC2650: How Notification is received in a Central Profile

Part Number: LAUNCHXL-CC2650
Other Parts Discussed in Thread: BLE-STACK

Where exactly will the notification be received in the central profile and how to get the notification value? 

  • Hi Arun,

    Notification packets will be received as ATT_HANDLE_VALUE_NOTI from the BLE-Stack. See the Software Developer's Guide appendix D.5 Events for the API description (link: )

    typedef struct
    {
    uint16 handle; //!< Handle of the attribute that has been changed (must be first field)
    uint16 len; //!< Length of value
    uint8 *pValue; //!< New value of the attribute (0 to ATT_MTU_SIZE-3)
    } attHandleValueNoti_t;