1.2.2.1.2.3.30 GATTS_HandleValueParams_T
C
typedef struct GATTS_HandleValueParams_T { uint16_t charHandle; uint16_t charLength; uint8_t charValue[BLE_ATT_MAX_MTU_LEN - ATT_HANDLE_VALUE_HEADER_SIZE]; uint8_t sendType; } GATTS_HandleValueParams_T;
Description
GATT Handle Value Notification/Indication parameters.
Field Documentation
Field | Description |
---|---|
charHandle | Handle of the characteristic to be notified/indicated. |
charLength | Length of the characteristic to be notified/indicated. Max value limited to size of charValue. |
charValue | Characteristic value to be notified/indicated. |
sendType | Flag indicating Notification or Indication. See ATT opcodes. Only ATT_HANDLE_VALUE_NTF/ATT_HANDLE_VALUE_IND are allowed. |