esp_ble_gattc_prepare_write() function
Prepare to write a characteristic value which is longer than the MTU size to a specified characteristic handle
Arguments
gattc_if
GATT Client access interface
handle
Characteristic 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 should be called only after the connection has been established. 2. After using this API, use `esp_ble_gattc_execute_write` to write. 3. This function triggers `ESP_GATTC_PREP_WRITE_EVT`. 4. If `value_len` is less than or equal to MTU size, it is recommended to `esp_ble_gattc_write_char` to write directly. 5. `handle` must be greater than 0.