mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
5369b68bc8
so that even if the same channel has other consumers, the voltage won't be changed
54 lines
2.0 KiB
Plaintext
54 lines
2.0 KiB
Plaintext
menu "LDO Regulator Configurations"
|
|
depends on SOC_GP_LDO_SUPPORTED
|
|
|
|
config ESP_LDO_CHAN_SPI_NOR_FLASH_DOMAIN
|
|
int "LDO regulator channel that used to power SPI NOR Flash (READ HELP)"
|
|
default 1
|
|
range -1 4
|
|
help
|
|
The internal LDO regulator can be used to power the SPI Flash specific power domain.
|
|
This option is to select which LDO channel to connect to that domain.
|
|
Please set this option correctly according to your schematic.
|
|
Set to -1 if the Flash is using any external power supply.
|
|
|
|
choice ESP_LDO_VOLTAGE_SPI_NOR_FLASH_DOMAIN
|
|
prompt "SPI NOR Flash power domain voltage"
|
|
depends on ESP_LDO_CHAN_SPI_NOR_FLASH_DOMAIN != -1
|
|
default ESP_LDO_VOLTAGE_SPI_NOR_FLASH_3300_MV
|
|
help
|
|
Select the voltage used by the Flash power domain.
|
|
|
|
config ESP_LDO_VOLTAGE_SPI_NOR_FLASH_3300_MV
|
|
bool "3.3V"
|
|
endchoice
|
|
|
|
config ESP_LDO_VOLTAGE_SPI_NOR_FLASH_DOMAIN
|
|
int
|
|
default 3300 if ESP_LDO_VOLTAGE_SPI_NOR_FLASH_3300_MV
|
|
|
|
config ESP_LDO_CHAN_PSRAM_DOMAIN
|
|
int "LDO regulator channel that used to power PSRAM and MPLL (READ HELP)"
|
|
default 2
|
|
range -1 4
|
|
help
|
|
The internal LDO regulator can be used to power the PSRAM specific power domain.
|
|
This option is to select which LDO channel to connect to that domain.
|
|
Please set this option correctly according to your schematic.
|
|
Set to -1 if the PSRAM is using any external power supply.
|
|
|
|
choice ESP_LDO_VOLTAGE_PSRAM_DOMAIN
|
|
prompt "PSRAM power domain voltage"
|
|
depends on ESP_LDO_CHAN_PSRAM_DOMAIN != -1
|
|
default ESP_LDO_VOLTAGE_PSRAM_1900_MV
|
|
help
|
|
Select the voltage used by the PSRAM power domain.
|
|
|
|
config ESP_LDO_VOLTAGE_PSRAM_1900_MV
|
|
bool "1.9V"
|
|
endchoice
|
|
|
|
config ESP_LDO_VOLTAGE_PSRAM_DOMAIN
|
|
int
|
|
default 1900 if ESP_LDO_VOLTAGE_PSRAM_1900_MV
|
|
endmenu
|