/hal_espressif-latest/tools/esptool_py/docs/en/espefuse/inc/ |
D | summary_ESP32-C6.rst | 16 … Represents whether icache is disabled or enabled. = False R/W (0b… 17 1: disabled. 0: enabled 19 abled. 1: disabled. 0: enabled 21 enabled. 1: disabled. 0: enabled 55 … equal to 0 is enabled or disabled. 1: enabled. 0: 58 dd number: disabled. Even number: enabled 60 y(permanently). 1: disabled. 0: enabled 70 … (BLOCK0) Represents whether icache is disabled or enabled i = False R/W (0b… 71 n Download mode. 1: disabled. 0: enabled 73 … nto download mode is disabled or enabled. 1: disab [all …]
|
D | summary_ESP32-H2.rst | 14 … Represents whether icache is disabled or enabled. = False R/W (0b… 15 1: disabled. 0: enabled 17 d. 1: enabled. 0: disabled 19 abled. 1: disabled. 0: enabled 21 enabled. 1: disabled. 0: enabled 59 dd number: disabled. Even number: enabled 61 y(permanently). 1: disabled. 0: enabled 72 … nto download mode is disabled or enabled. 1: disab 73 led. 0: enabled 75 … e_download is disabled or enabled. 1: disabled. 0: [all …]
|
D | summary_ESP32-P4.rst | 15 d. 1: enabled. 0: disabled 17 abled. 1: disabled. 0: enabled 29 enabled. 1: disabled. 0: enabled 35 … esponding PAD is enabled. 1: enabled. 0:disabled 69 … equal to 0 is enabled or disabled. 1: enabled. 0: 72 dd number: disabled. Even number: enabled 74 y(permanently). 1: disabled. 0: enabled 86 … nto download mode is disabled or enabled. 1: disab 87 led. 0: enabled 91 … led or enabled(except in SPI boot mode). 1: disabl [all …]
|
/hal_espressif-latest/components/efuse/esp32c6/ |
D | esp_efuse_table.csv | 112 … EFUSE_BLK0, 40, 1, [] Represents whether icache is disabled or enabled. 1: disabled. 0: enabled 113 …presents whether the function of usb switch to jtag is disabled or enabled. 1: disabled. 0: enabled 114 …2, 1, [] Represents whether icache is disabled or enabled in Download mode. 1: disabled. 0: enab… 115 …K0, 43, 1, [] Represents whether USB-Serial-JTAG is disabled or enabled. 1: disabled. 0: enabled 116 …er the function that forces chip into download mode is disabled or enabled. 1: disabled. 0: enabled 117 …s whether SPI0 controller during boot_mode_download is disabled or enabled. 1: disabled. 0: enabled 118 …46, 1, [DIS_CAN] Represents whether TWAI function is disabled or enabled. 1: disabled. 0: enabled 119 … EFUSE_DIS_PAD_JTAG and EFUSE_DIS_USB_JTAG are equal to 0 is enabled or disabled. 1: enabled. 0: d… 120 … 3, [] Represents whether JTAG is disabled in soft way. Odd number: disabled. Even number: enabled 121 …, 1, [] Represents whether JTAG is disabled in the hard way(permanently). 1: disabled. 0: enabled [all …]
|
/hal_espressif-latest/components/hal/ |
D | efuse_hal.c | 40 bool enabled = false; in efuse_hal_flash_encryption_enabled() local 43 enabled = !enabled; in efuse_hal_flash_encryption_enabled() 47 return enabled; in efuse_hal_flash_encryption_enabled()
|
/hal_espressif-latest/components/hal/esp32s2/include/hal/ |
D | cache_ll.h | 37 bool enabled; in cache_ll_l1_is_cache_enabled() local 39 enabled = REG_GET_BIT(EXTMEM_PRO_ICACHE_CTRL_REG, EXTMEM_PRO_ICACHE_ENABLE); in cache_ll_l1_is_cache_enabled() 41 enabled = REG_GET_BIT(EXTMEM_PRO_DCACHE_CTRL_REG, EXTMEM_PRO_DCACHE_ENABLE); in cache_ll_l1_is_cache_enabled() 43 enabled = REG_GET_BIT(EXTMEM_PRO_ICACHE_CTRL_REG, EXTMEM_PRO_ICACHE_ENABLE); in cache_ll_l1_is_cache_enabled() 44 enabled = enabled && REG_GET_BIT(EXTMEM_PRO_DCACHE_CTRL_REG, EXTMEM_PRO_DCACHE_ENABLE); in cache_ll_l1_is_cache_enabled() 46 return enabled; in cache_ll_l1_is_cache_enabled()
|
/hal_espressif-latest/components/efuse/esp32h2/ |
D | esp_efuse_table.csv | 112 … EFUSE_BLK0, 40, 1, [] Represents whether icache is disabled or enabled. 1: disabled. 0: enabled 113 …presents whether the function of usb switch to jtag is disabled or enabled. 1: disabled. 0: enabled 114 …USE_BLK0, 42, 1, [] Represents whether power glitch function is enabled. 1: enabled. 0: disabled 115 …er the function that forces chip into download mode is disabled or enabled. 1: disabled. 0: enabled 116 …s whether SPI0 controller during boot_mode_download is disabled or enabled. 1: disabled. 0: enabled 117 …46, 1, [DIS_CAN] Represents whether TWAI function is disabled or enabled. 1: disabled. 0: enabled 119 … 3, [] Represents whether JTAG is disabled in soft way. Odd number: disabled. Even number: enabled 120 …, 1, [] Represents whether JTAG is disabled in the hard way(permanently). 1: disabled. 0: enabled 121 …s whether flash encrypt function is disabled or enabled(except in SPI boot mode). 1: disabled. 0: … 139 … EFUSE_BLK0, 115, 1, [] Represents whether anti-dpa attack is enabled. 1:enabled. 0: disabled [all …]
|
/hal_espressif-latest/components/hal/esp32s3/include/hal/ |
D | cache_ll.h | 53 bool enabled; in cache_ll_l1_is_cache_enabled() local 55 enabled = REG_GET_BIT(EXTMEM_ICACHE_CTRL_REG, EXTMEM_ICACHE_ENABLE); in cache_ll_l1_is_cache_enabled() 57 enabled = REG_GET_BIT(EXTMEM_DCACHE_CTRL_REG, EXTMEM_DCACHE_ENABLE); in cache_ll_l1_is_cache_enabled() 59 enabled = REG_GET_BIT(EXTMEM_ICACHE_CTRL_REG, EXTMEM_ICACHE_ENABLE); in cache_ll_l1_is_cache_enabled() 60 enabled = enabled && REG_GET_BIT(EXTMEM_DCACHE_CTRL_REG, EXTMEM_DCACHE_ENABLE); in cache_ll_l1_is_cache_enabled() 62 return enabled; in cache_ll_l1_is_cache_enabled()
|
/hal_espressif-latest/components/esp_phy/ |
D | Kconfig | 7 … If this option is enabled, NVS will be initialized and calibration data will be loaded from there. 23 If enabled, PHY init data will be loaded from a partition. 30 If this option is not enabled, PHY init data will be embedded 40 If enabled, PHY init data will be restored to default if 51 If enabled, the corresponding PHY init data type can be automatically switched 66 If enabled, multiple phy init data bin will embedded into app bin 67 …If not enabled, multiple phy init data bin will still leave alone, and need to be flashed by users. 74 If enabled, when an error occurs while the PHY init data is updated, 76 If not enabled, the PHY init data will not be updated when an error occurs. 102 If enabled, the MAC and baseband of Wi-Fi and Bluetooth will be powered [all …]
|
/hal_espressif-latest/components/esp_system/port/ |
D | brownout.c | 72 .enabled = true, in esp_brownout_init() 93 .enabled = true, in esp_brownout_init() 106 .enabled = false, in esp_brownout_disable()
|
/hal_espressif-latest/components/esp_pm/ |
D | Kconfig | 8 If enabled, application is compiled with support for power management. 19 If enabled, startup code configures dynamic frequency scaling. 30 If enabled, esp_pm_* functions will keep track of the amount of time 43 If enabled, some GPIOs will be used to signal events such as RTOS ticks, 54 … If enabled, about 1.8KB of lightsleep related source code would be in IRAM and chip would sleep 63 … If enabled, about 260B of RTOS_IDLE related source code would be in IRAM and chip would sleep 73 …If enabled, chips will disable all GPIO pins at automantic sleep to reduce about 200~300 uA curren… 99 If enabled, the CPU will be powered down in light sleep. On esp32c3 soc, enabling this 109 … If enabled, the I/D-cache tag memory will be retained in light sleep. Depending on the the 110 … cache configuration, if this option is enabled, it will consume up to 9 KB of internal RAM. [all …]
|
/hal_espressif-latest/components/bt/host/bluedroid/btc/profile/esp/wechat_AirSync/ |
D | wx_airsync_prf.c | 60 airsync_cb_env.enabled = true; in airsync_profile_cb() 68 if (airsync_cb_env.clcb.connected && airsync_cb_env.enabled) { in airsync_profile_cb() 78 if (airsync_cb_env.clcb.connected && airsync_cb_env.enabled) { in airsync_profile_cb() 242 if (airsync_cb_env.enabled) { in AirSync_Init() 258 airsync_cb_env.enabled = TRUE; in AirSync_Init()
|
/hal_espressif-latest/components/esp_psram/ |
D | Kconfig.spiram.common | 9 If this is enabled, the SPI RAM will be enabled during initial boot. Unless you 10 have specific requirements, you'll want to leave this enabled so memory allocated 18 … Normally, if psram initialization is enabled during compile time but not found at runtime, it 19 is seen as an error making the CPU panic. If this is enabled, booting will complete 94 …If enabled, variables with EXT_RAM_BSS_ATTR attribute will be placed in SPIRAM instead of internal… 106 If enabled, noinit variables can be placed in PSRAM using EXT_RAM_NOINIT_ATTR. 118 If enabled, 1/16 of the SPI RAM total size will be reserved for error-correcting code.
|
/hal_espressif-latest/components/hal/esp32/include/hal/ |
D | cache_ll.h | 73 bool enabled; in cache_ll_l1_is_cache_enabled() local 75 enabled = DPORT_REG_GET_BIT(DPORT_PRO_CACHE_CTRL_REG, DPORT_PRO_CACHE_ENABLE); in cache_ll_l1_is_cache_enabled() 77 enabled = DPORT_REG_GET_BIT(DPORT_APP_CACHE_CTRL_REG, DPORT_APP_CACHE_ENABLE); in cache_ll_l1_is_cache_enabled() 79 return enabled; in cache_ll_l1_is_cache_enabled()
|
/hal_espressif-latest/components/esp_psram/esp32s2/ |
D | Kconfig.spiram | 54 If enabled, instructions in flash will be moved into PSRAM on startup. 55 … If SPIRAM_RODATA is also enabled, code that requires execution during an SPI1 Flash operation 64 If enabled, rodata in flash will be moved into PSRAM on startup. 65 …If SPIRAM_FETCH_INSTRUCTIONS is also enabled, code that requires execution during an SPI1 Flash op…
|
/hal_espressif-latest/components/esp_system/port/soc/esp32s2/ |
D | Kconfig.system | 52 bool "Keep USB peripheral enabled at start up" if !ESP_CONSOLE_USB_CDC 56 are reset. Enable this option to keep USB peripheral enabled. 57 This option is automatically enabled if "USB CDC" console is selected.
|
/hal_espressif-latest/components/esp_hw_support/port/esp32s3/ |
D | esp_memprot.c | 488 esp_err_t esp_mprot_get_monitor_en(esp_mprot_mem_t mem_type, bool *enabled, const int core) in esp_mprot_get_monitor_en() argument 490 if (enabled == NULL) { in esp_mprot_get_monitor_en() 499 …MEMPROT_ERR_CHECK(err, esp_mprot_ll_err_to_esp_err(memprot_ll_iram0_get_monitor_en(core, enabled))) in esp_mprot_get_monitor_en() 502 …MEMPROT_ERR_CHECK(err, esp_mprot_ll_err_to_esp_err(memprot_ll_dram0_get_monitor_en(core, enabled))) in esp_mprot_get_monitor_en() 505 …MPROT_ERR_CHECK(err, esp_mprot_ll_err_to_esp_err(memprot_ll_rtcfast_get_monitor_en(core, enabled))) in esp_mprot_get_monitor_en() 698 esp_err_t esp_mprot_is_intr_ena_any(bool *enabled) in esp_mprot_is_intr_ena_any() argument 700 if (enabled == NULL) { in esp_mprot_is_intr_ena_any() 710 *enabled |= ena_on; in esp_mprot_is_intr_ena_any() 714 *enabled |= ena_on; in esp_mprot_is_intr_ena_any() 721 *enabled |= ena_on; in esp_mprot_is_intr_ena_any() [all …]
|
/hal_espressif-latest/components/esp_hw_support/port/esp32c3/ |
D | esp_memprot.c | 391 esp_err_t esp_mprot_get_monitor_en(const esp_mprot_mem_t mem_type, bool *enabled, const int core __… in esp_mprot_get_monitor_en() argument 393 if (enabled == NULL) { in esp_mprot_get_monitor_en() 399 *enabled = memprot_ll_iram0_get_monitor_en(); in esp_mprot_get_monitor_en() 402 *enabled = memprot_ll_dram0_get_monitor_en(); in esp_mprot_get_monitor_en() 405 *enabled = memprot_ll_rtcfast_get_monitor_en(); in esp_mprot_get_monitor_en() 484 esp_err_t esp_mprot_is_intr_ena_any(bool *enabled) in esp_mprot_is_intr_ena_any() argument 486 if (enabled == NULL) { in esp_mprot_is_intr_ena_any() 494 *enabled |= ena_on; in esp_mprot_is_intr_ena_any() 496 *enabled |= ena_on; in esp_mprot_is_intr_ena_any() 498 *enabled |= ena_on; in esp_mprot_is_intr_ena_any()
|
/hal_espressif-latest/components/esp_psram/esp32s3/ |
D | Kconfig.spiram | 63 If enabled, instructions in flash will be moved into PSRAM on startup. 64 … If SPIRAM_RODATA is also enabled, code that requires execution during an SPI1 Flash operation 73 If enabled, rodata in flash will be moved into PSRAM on startup. 74 …If SPIRAM_FETCH_INSTRUCTIONS is also enabled, code that requires execution during an SPI1 Flash op…
|
/hal_espressif-latest/components/bootloader/ |
D | Kconfig.projbuild | 77 for external SPIRAM if it is enabled. 131 If this option is enabled, and VDDSDIO LDO is set to 1.8V (using eFuse 164 …The selected GPIO will be configured as an input with internal pull-up enabled (note that on some … 216 The selected GPIO will be configured as an input with internal pull-up enabled. 374 options" is enabled, however it's strongly recommended to NOT enable it as 395 …from a flash corruption event, keep the option BOOTLOADER_WDT_ENABLE enabled and consider also ena… 413 is the only important factor then it can be enabled. 446 RTC FAST memory CRC calculation takes place. When this option is enabled, the 619 … If hardware secure boot is enabled, this option is always enabled and cannot be disabled. 620 …If hardware secure boot is not enabled, this option doesn't add significant security by itself so … [all …]
|
/hal_espressif-latest/components/spi_flash/ |
D | Kconfig | 11 When this option is selected, the patch will be enabled for XMC. 42 …Whether the High Performance Mode of Flash is enabled. As an optional feature, user needs to manua… 44 automatically enabled with warning when Flash running > 80Mhz. 58 … # For ESP32-S3, it's enabled by default. For later chips it should be disabled by default 74 bool "Auto (Enable when bootloader support enabled (BOOTLOADER_FLASH_DC_AWARE))" 83 … This is a helper config for HPM. Whether HPM-DC is enabled is also determined by bootloader. 110 … However, if your product in field has enabled this feature, you may still enable this 126 If this option is enabled, any time SPI flash is written then the data will be read 135 If this option is enabled, if SPI flash write verification fails then a log error line 144 … If this option is enabled, any SPI flash write which tries to set zero bits in the flash to [all …]
|
/hal_espressif-latest/components/esp_system/port/soc/esp32/ |
D | Kconfig.memory | 21 … If this option is enabled, the DRAM part of the heap starts right after the dram0_0 region, 32 controller is enabled. 38 If enabled, application can use IRAM as byte accessible region for storing data
|
/hal_espressif-latest/components/bootloader_support/src/ |
D | flash_encrypt.c | 95 bool enabled = false; in esp_flash_encryption_enabled() 98 enabled = !enabled; in esp_flash_encryption_enabled() 102 return enabled; in esp_flash_encryption_enabled()
|
/hal_espressif-latest/components/bootloader/subproject/ |
D | CMakeLists.txt | 167 "Bootloader built. Secure boot enabled, so bootloader not flashed automatically." 182 "Secure boot enabled, so bootloader not flashed automatically." 210 "Bootloader built. Secure boot enabled, so bootloader not flashed automatically." 217 "Secure boot enabled, so bootloader not flashed automatically." 229 "Bootloader built. Secure boot enabled, so bootloader not flashed automatically." 231 "Secure boot enabled, so bootloader not flashed automatically."
|
/hal_espressif-latest/components/hal/include/hal/ |
D | brownout_hal.h | 26 bool enabled; member
|