Merge branch 'contrib/github_pr_8402' into 'release/v4.3'

secure boot:  add missing `#include "esp_flash_encrypt.h"`

See merge request espressif/esp-idf!17159
This commit is contained in:
Mahavir Jain
2022-02-15 10:42:43 +00:00

View File

@ -28,6 +28,8 @@
#include "esp32s2/rom/efuse.h"
#include "esp32s2/rom/secure_boot.h"
#include "esp_flash_encrypt.h"
static const char *TAG = "secure_boot_v2";
#define ALIGN_UP(num, align) (((num) + ((align) - 1)) & ~((align) - 1))