esp-idf/components/bootloader_support
KonstantinKondrashov 09af4a9fad bootloader: Fix esp_get_flash_encryption_mode(). RELEASE = (CRYPT_CNT == max) or (CRYPT_CNT.write_protect == true)
If the CRYPT_CNT efuse is max it means the same as a write protection bit for this efuse.

Closes: https://github.com/espressif/esp-idf/issues/5747
2020-09-11 04:20:23 +00:00
..
include spi_flash: add config option to override flash size in bootloader header 2020-09-02 00:35:53 +08:00
include_bootloader
src bootloader: Fix esp_get_flash_encryption_mode(). RELEASE = (CRYPT_CNT == max) or (CRYPT_CNT.write_protect == true) 2020-09-11 04:20:23 +00:00
test cmock: added cmock as component 2020-09-02 16:38:37 +08:00
CMakeLists.txt bootloader: fix section placement issues found by the check script 2020-09-03 18:14:17 +02:00
Makefile.projbuild
README.rst
component.mk bootloader: fix section placement issues found by the check script 2020-09-03 18:14:17 +02:00

README.rst

Bootloader Support Component
============================

Overview
--------

"Bootloader support" contains APIs which are used by the bootloader but are also needed for the main app.

Code in this component needs to be aware of being executed in a bootloader environment (no RTOS available, BOOTLOADER_BUILD macro set) or in an esp-idf app environment (RTOS running, need locking support.)