esp_ble_gattc_prepare_write_char_descr() function
Prepare to write a characteristic descriptor value at a given handle
Arguments
gattc_if
GATT Client access interface
handle
Characteristic descriptor handle to prepare to write
offset
The position offset to write
value_len
The length of the value to write in bytes
auth_req
Authentication request type
Return value
- ESP_OK: Success - ESP_ERR_INVALID_STATE: The connection has not been established. - ESP_GATT_INVALID_HANDLE:Invalid `handle` - ESP_FAIL: Failure due to other reasons
Notes
1. This function triggers `ESP_GATTC_WRITE_CHAR_EVT`. 2. This function should be called only after the connection has been established. 3. `handle` must be greater than 0.