esp_partition_write_raw() is only used within ESP-IDF.
 
Symbols
loading...
Files
loading...
SummarySyntaxArgumentsRelatedReferences

Return value

ESP_OK, if data was written successfully; ESP_ERR_INVALID_ARG, if dst_offset exceeds partition size; ESP_ERR_INVALID_SIZE, if write would go out of bounds of the partition; ESP_ERR_NOT_ALLOWED, if partition is read-only; or one of the error codes from lower-level flash driver.

Notes

This function is essentially the same as \c esp_partition_write() above. It just never encrypts data but writes it as is. Prior to writing to flash memory, make sure it has been erased with esp_partition_erase_range call.

References

from examples