1menu "Common ESP-related" 2 3 config ESP_ERR_TO_NAME_LOOKUP 4 bool "Enable lookup of error code strings" 5 default "y" 6 help 7 Functions esp_err_to_name() and esp_err_to_name_r() return string representations of error codes from a 8 pre-generated lookup table. This option can be used to turn off the use of the look-up table in order to 9 save memory but this comes at the price of sacrificing distinguishable (meaningful) output string 10 representations. 11 12 config ESP_ALLOW_BSS_SEG_EXTERNAL_MEMORY 13 # Invisible option that is set by SPIRAM_ALLOW_BSS_SEG_EXTERNAL_MEMORY, but 14 # exists even if SPIRAM is not supported 15 bool 16 17endmenu # Common ESP-related 18