2018-11-19 03:46:21 +00:00
|
|
|
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
|
2018-12-11 06:39:32 +00:00
|
|
|
bool "Simulate eFuse operations in RAM"
|
2018-11-19 03:46:21 +00:00
|
|
|
default n
|
|
|
|
help
|
2018-12-11 06:39:32 +00:00
|
|
|
All read and writes operations are redirected to RAM instead of eFuse registers.
|
|
|
|
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.
|
2018-11-19 03:46:21 +00:00
|
|
|
|
2018-11-21 08:09:36 +00:00
|
|
|
choice EFUSE_CODE_SCHEME_SELECTOR
|
|
|
|
prompt "Coding scheme"
|
|
|
|
default EFUSE_CODE_SCHEME_STATE_NONE
|
2018-11-19 03:46:21 +00:00
|
|
|
help
|
|
|
|
Selector eFuse code scheme.
|
|
|
|
|
2018-11-21 08:09:36 +00:00
|
|
|
config EFUSE_CODE_SCHEME_STATE_NONE
|
|
|
|
bool "NONE"
|
|
|
|
config EFUSE_CODE_SCHEME_STATE_3_4
|
2018-11-19 03:46:21 +00:00
|
|
|
bool "3/4"
|
2018-11-21 08:09:36 +00:00
|
|
|
config EFUSE_CODE_SCHEME_STATE_REPEAT
|
|
|
|
bool "REPEAT"
|
2018-11-19 03:46:21 +00:00
|
|
|
endchoice
|
|
|
|
|
2018-11-21 08:09:36 +00:00
|
|
|
config EFUSE_CODE_SCHEME
|
|
|
|
int
|
|
|
|
default 0 if EFUSE_CODE_SCHEME_STATE_NONE
|
|
|
|
default 1 if EFUSE_CODE_SCHEME_STATE_3_4
|
|
|
|
default 2 if EFUSE_CODE_SCHEME_STATE_REPEAT
|
|
|
|
|
2018-11-19 03:46:21 +00:00
|
|
|
endmenu
|