[][src]Function esp_idf_bindgen::esp_ota_write

pub unsafe extern "C" fn esp_ota_write(
    handle: esp_ota_handle_t,
    data: *const c_void,
    size: size_t
) -> esp_err_t

@brief Write OTA update data to partition

This function can be called multiple times as data is received during the OTA operation. Data is written sequentially to the partition.

@param handle Handle obtained from esp_ota_begin @param data Data buffer to write @param size Size of data buffer in bytes.

@return