mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
693a5c209b
Added support 3/4 coding scheme
38 lines
970 B
Plaintext
38 lines
970 B
Plaintext
menu "eFuse bit Manager"
|
|
|
|
config EFUSE_CUSTOM_TABLE
|
|
bool "Use custom eFuse table"
|
|
default n
|
|
help
|
|
Allows to generate a structure for eFuse from the CSV file.
|
|
|
|
config EFUSE_CUSTOM_TABLE_FILENAME
|
|
string "Custom eFuse CSV file" if EFUSE_CUSTOM_TABLE
|
|
default main/esp_efuse_custom_table.csv
|
|
help
|
|
Name of the custom eFuse CSV filename. This path is evaluated
|
|
relative to the project root directory.
|
|
|
|
config EFUSE_VIRTUAL
|
|
bool "Emulate eFuse work"
|
|
default n
|
|
help
|
|
If this option is set, all permanent changes (via eFuse) are disabled.
|
|
Log output will state changes which would be applied, but they will not be.
|
|
|
|
choice EFUSE_CODE_SCHEME
|
|
prompt "eFuse Code Scheme"
|
|
default EFUSE_CODE_SCHEME_NONE
|
|
help
|
|
Selector eFuse code scheme.
|
|
|
|
config EFUSE_CODE_SCHEME_NONE
|
|
bool "None"
|
|
config EFUSE_CODE_SCHEME_3_4
|
|
bool "3/4"
|
|
config EFUSE_CODE_SCHEME_REPEAT
|
|
bool "Repeat"
|
|
endchoice
|
|
|
|
endmenu
|