kopia lustrzana https://github.com/espressif/esp-idf
doc: Add note about bootloader version compatibility
rodzic
34e6a17c09
commit
9a9af61cec
|
@ -10,12 +10,20 @@ Bootloader performs the following functions:
|
|||
|
||||
Bootloader is located at the address `0x1000` in the flash.
|
||||
|
||||
FACTORY reset
|
||||
---------------------------
|
||||
The user can write a basic working firmware and load it into the factory partition.
|
||||
Bootloader compatibility
|
||||
------------------------
|
||||
|
||||
It is recommended to update to newer :doc:`versions of ESP-IDF </versions>`: when they are released. The OTA (over the air) update process can flash new apps in the field but cannot flash a new bootloader. For this reason, the bootloader supports booting apps built from newer versions of ESP-IDF.
|
||||
|
||||
The bootloader does not support booting apps from older versions of ESP-IDF. When updating ESP-IDF manually on an existing product that might need to downgrade the app to an older version, keep using the older ESP-IDF bootloader binary as well.
|
||||
|
||||
Factory reset
|
||||
-------------
|
||||
The user can write a basic working firmware and load it into the factory app partition.
|
||||
|
||||
Next, update the firmware via OTA (over the air). The updated firmware will be loaded into an OTA app partition slot and the OTA data partition is updated to boot from this partition.
|
||||
If you want to be able to roll back to the factory firmware and clear the settings, then you need to set :ref:`CONFIG_BOOTLOADER_FACTORY_RESET`.
|
||||
The factory reset mechanism allows to reset the device to factory settings:
|
||||
|
||||
If you want to be able to roll back to the factory firmware and clear the settings, then you need to set :ref:`CONFIG_BOOTLOADER_FACTORY_RESET`. The factory reset mechanism allows to reset the device to factory settings:
|
||||
|
||||
- Clear one or more data partitions.
|
||||
- Boot from "factory" partition.
|
||||
|
@ -45,8 +53,8 @@ Partition table.::
|
|||
|
||||
.. _bootloader_boot_from_test_firmware:
|
||||
|
||||
Boot from TEST firmware
|
||||
------------------------
|
||||
Boot from test app partition
|
||||
----------------------------
|
||||
The user can write a special firmware for testing in production, and run it as needed. The partition table also needs a dedicated partition for this testing firmware (See `partition table`).
|
||||
To trigger a test app you need to set :ref:`CONFIG_BOOTLOADER_APP_TEST`.
|
||||
|
||||
|
|
Ładowanie…
Reference in New Issue