2019-04-30 10:51:55 +00:00
|
|
|
menu "Common ESP-related"
|
|
|
|
|
|
|
|
config ESP_ERR_TO_NAME_LOOKUP
|
|
|
|
bool "Enable lookup of error code strings"
|
|
|
|
default "y"
|
|
|
|
help
|
|
|
|
Functions esp_err_to_name() and esp_err_to_name_r() return string representations of error codes from a
|
|
|
|
pre-generated lookup table. This option can be used to turn off the use of the look-up table in order to
|
|
|
|
save memory but this comes at the price of sacrificing distinguishable (meaningful) output string
|
|
|
|
representations.
|
|
|
|
|
2020-12-30 08:12:07 +00:00
|
|
|
config ESP_ALLOW_BSS_SEG_EXTERNAL_MEMORY
|
|
|
|
# Invisible option that is set by SPIRAM_ALLOW_BSS_SEG_EXTERNAL_MEMORY, but
|
|
|
|
# exists even if SPIRAM is not supported
|
|
|
|
bool
|
|
|
|
|
2020-06-23 23:26:34 +00:00
|
|
|
endmenu # Common ESP-related
|