In ESP document for flash encryption i found
And inOTA updates to encrypted partitions will automatically write encrypted, as long as the esp_partition_write function is used.
Code: Select all
esp_ota_write
Code: Select all
esp_partition_write
But i want to do ota with encrypted firmware. This is a requirement for production.
Based on IDF document, i think i have to modified
Code: Select all
esp_partition_write
Is there any solution for this?
I also looking for ESP32 production guide.