mirror of
https://github.com/espressif/esp-idf.git
synced 2025-07-30 18:57:19 +02:00
esp_flash_encrypt: If it is supported then Enable secure download mode in release mode instead of disabling it completely.
This commit is contained in:
@ -204,7 +204,12 @@ void esp_flash_encryption_set_release_mode(void)
|
|||||||
ESP_LOGE(TAG, "Flash Encryption support not added, abort..");
|
ESP_LOGE(TAG, "Flash Encryption support not added, abort..");
|
||||||
abort();
|
abort();
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#if CONFIG_SOC_SUPPORTS_SECURE_DL_MODE
|
||||||
|
esp_efuse_enable_rom_secure_download_mode();
|
||||||
|
#else
|
||||||
esp_efuse_disable_rom_download_mode();
|
esp_efuse_disable_rom_download_mode();
|
||||||
|
#endif
|
||||||
esp_efuse_batch_write_commit();
|
esp_efuse_batch_write_commit();
|
||||||
|
|
||||||
if (esp_get_flash_encryption_mode() != ESP_FLASH_ENC_MODE_RELEASE) {
|
if (esp_get_flash_encryption_mode() != ESP_FLASH_ENC_MODE_RELEASE) {
|
||||||
|
Reference in New Issue
Block a user