fix(efuse): fix compile failure on linux target

This commit is contained in:
Marius Vikhammer
2024-05-21 09:33:52 +08:00
parent b24a6af0b7
commit 5bdde4c994
2 changed files with 14 additions and 3 deletions

View File

@@ -8,6 +8,7 @@
*/
#include <stdio.h>
#include "sdkconfig.h"
#include "freertos/FreeRTOS.h"
#include "freertos/task.h"
#include "esp_err.h"
@@ -15,9 +16,14 @@
#include "esp_efuse.h"
#include "esp_efuse_table.h"
#include "esp_efuse_custom_table.h"
#if CONFIG_SECURE_BOOT
#include "esp_secure_boot.h"
#endif
#if CONFIG_SECURE_FLASH_ENC_ENABLED
#include "esp_flash_encrypt.h"
#include "sdkconfig.h"
#endif
static const char* TAG = "example";