mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
fix(bootloader): Update pin range for factory reset and app test
Update the range for pin selection of BOOTLOADER_NUM_PIN_APP_TEST and BOOTLOADER_NUM_PIN_FACTORY_RESET based on the selected target. Closes https://github.com/espressif/esp-idf/issues/14508
This commit is contained in:
parent
d3631b3afa
commit
ab4e658af6
@ -158,13 +158,23 @@ menu "Bootloader config"
|
|||||||
int "Number of the GPIO input for factory reset"
|
int "Number of the GPIO input for factory reset"
|
||||||
depends on BOOTLOADER_FACTORY_RESET
|
depends on BOOTLOADER_FACTORY_RESET
|
||||||
range 0 39 if IDF_TARGET_ESP32
|
range 0 39 if IDF_TARGET_ESP32
|
||||||
range 0 44 if IDF_TARGET_ESP32S2
|
range 0 46 if IDF_TARGET_ESP32S2
|
||||||
|
range 0 48 if IDF_TARGET_ESP32S3
|
||||||
|
range 0 20 if IDF_TARGET_ESP32C2
|
||||||
|
range 0 21 if IDF_TARGET_ESP32C3 || IDF_TARGET_ESP32C61
|
||||||
|
range 0 28 if IDF_TARGET_ESP32C5
|
||||||
|
range 0 30 if IDF_TARGET_ESP32C6
|
||||||
|
range 0 27 if IDF_TARGET_ESP32H2
|
||||||
|
range 0 54 if IDF_TARGET_ESP32P4
|
||||||
default 4
|
default 4
|
||||||
help
|
help
|
||||||
The selected GPIO will be configured as an input with internal pull-up enabled (note that on some SoCs.
|
The selected GPIO will be configured as an input with internal pull-up enabled. To trigger a factory
|
||||||
not all pins have an internal pull-up, consult the hardware datasheet for details.) To trigger a factory
|
|
||||||
reset, this GPIO must be held high or low (as configured) on startup.
|
reset, this GPIO must be held high or low (as configured) on startup.
|
||||||
|
|
||||||
|
Note that on some SoCs not all pins have an internal pull-up and certain pins are already
|
||||||
|
used by ROM bootloader as bootstrapping. Refer to the technical reference manual for further
|
||||||
|
details on the selected SoC.
|
||||||
|
|
||||||
choice BOOTLOADER_FACTORY_RESET_PIN_LEVEL
|
choice BOOTLOADER_FACTORY_RESET_PIN_LEVEL
|
||||||
bool "Factory reset GPIO level"
|
bool "Factory reset GPIO level"
|
||||||
depends on BOOTLOADER_FACTORY_RESET
|
depends on BOOTLOADER_FACTORY_RESET
|
||||||
@ -210,14 +220,25 @@ menu "Bootloader config"
|
|||||||
config BOOTLOADER_NUM_PIN_APP_TEST
|
config BOOTLOADER_NUM_PIN_APP_TEST
|
||||||
int "Number of the GPIO input to boot TEST partition"
|
int "Number of the GPIO input to boot TEST partition"
|
||||||
depends on BOOTLOADER_APP_TEST
|
depends on BOOTLOADER_APP_TEST
|
||||||
range 0 39
|
range 0 39 if IDF_TARGET_ESP32
|
||||||
|
range 0 46 if IDF_TARGET_ESP32S2
|
||||||
|
range 0 48 if IDF_TARGET_ESP32S3
|
||||||
|
range 0 20 if IDF_TARGET_ESP32C2
|
||||||
|
range 0 21 if IDF_TARGET_ESP32C3 || IDF_TARGET_ESP32C61
|
||||||
|
range 0 28 if IDF_TARGET_ESP32C5
|
||||||
|
range 0 30 if IDF_TARGET_ESP32C6
|
||||||
|
range 0 27 if IDF_TARGET_ESP32H2
|
||||||
|
range 0 54 if IDF_TARGET_ESP32P4
|
||||||
default 18
|
default 18
|
||||||
help
|
help
|
||||||
The selected GPIO will be configured as an input with internal pull-up enabled.
|
The selected GPIO will be configured as an input with internal pull-up enabled.
|
||||||
To trigger a test app, this GPIO must be pulled low on reset.
|
To trigger a test app, this GPIO must be pulled low on reset.
|
||||||
After the GPIO input is deactivated and the device reboots, the old application will boot.
|
After the GPIO input is deactivated and the device reboots, the old application will boot.
|
||||||
(factory or OTA[x]).
|
(factory or OTA[x]).
|
||||||
Note that GPIO34-39 do not have an internal pullup and an external one must be provided.
|
|
||||||
|
Note that on some SoCs not all pins have an internal pull-up and certain pins are already
|
||||||
|
used by ROM bootloader as bootstrapping. Refer to the technical reference manual for further
|
||||||
|
details on the selected SoC.
|
||||||
|
|
||||||
choice BOOTLOADER_APP_TEST_PIN_LEVEL
|
choice BOOTLOADER_APP_TEST_PIN_LEVEL
|
||||||
bool "App test GPIO level"
|
bool "App test GPIO level"
|
||||||
|
Loading…
Reference in New Issue
Block a user