mirror of
https://github.com/espressif/esp-idf.git
synced 2026-07-23 03:13:01 +03:00
esp_efuse_utility_load_efuses_from_flash() read emul_efuse as an encrypted partition, but that is not correct, this partition was never encrypted. Need to read it as not encrypted partition. Fxed the case: If FE is already on then EFUSE VIRT mode can work with it. Closes https://github.com/espressif/esp-idf/issues/10929
51 lines
919 B
C
51 lines
919 B
C
/*
|
|
* SPDX-FileCopyrightText: 2021-2022 Espressif Systems (Shanghai) CO LTD
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <stdint.h>
|
|
#include <stdbool.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
|
|
/**
|
|
* @brief get factory mac address
|
|
*/
|
|
void efuse_hal_get_mac(uint8_t *mac);
|
|
|
|
/**
|
|
* @brief Returns chip version
|
|
*
|
|
* @return Chip version in format: Major * 100 + Minor
|
|
*/
|
|
uint32_t efuse_hal_chip_revision(void);
|
|
|
|
/**
|
|
* @brief Is flash encryption currently enabled in hardware?
|
|
*
|
|
* Flash encryption is enabled if the FLASH_CRYPT_CNT efuse has an odd number of bits set.
|
|
*
|
|
* @return true if flash encryption is enabled.
|
|
*/
|
|
bool efuse_hal_flash_encryption_enabled(void);
|
|
|
|
/**
|
|
* @brief Returns major chip version
|
|
*/
|
|
uint32_t efuse_hal_get_major_chip_version(void);
|
|
|
|
/**
|
|
* @brief Returns minor chip version
|
|
*/
|
|
uint32_t efuse_hal_get_minor_chip_version(void);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|