esp_ble_gattc_prepare_write() is only used within ESP-IDF.
 
Symbols
loading...
Files
loading...
SummarySyntaxArgumentsReferences

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.

References

from examples