mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
42 lines
1.1 KiB
Plaintext
42 lines
1.1 KiB
Plaintext
menu "Example Configuration"
|
|
config EXAMPLE_USED_LDO_CHAN_ID
|
|
int "example used LDO channel ID"
|
|
default 3
|
|
help
|
|
Example used LDO channel ID, you may check datasheet to know more details.
|
|
|
|
config EXAMPLE_USED_LDO_VOLTAGE_MV
|
|
int "example used LDO voltage in mV"
|
|
default 2500
|
|
range 0 3300
|
|
help
|
|
Example used LDO voltage, in mV
|
|
|
|
choice EXAMPLE_MIPI_CSI_DISP_HRES
|
|
bool "Set MIPI CSI horizontal resolution"
|
|
default EXAMPLE_MIPI_CSI_HRES_800
|
|
|
|
config EXAMPLE_MIPI_CSI_HRES_800
|
|
bool "800"
|
|
endchoice
|
|
|
|
config EXAMPLE_MIPI_CSI_DISP_HRES
|
|
int
|
|
default 800 if EXAMPLE_MIPI_CSI_HRES_800
|
|
|
|
choice EXAMPLE_MIPI_CSI_DISP_VRES
|
|
bool "Set MIPI CSI vertical resolution"
|
|
default EXAMPLE_MIPI_CSI_VRES_640
|
|
|
|
config EXAMPLE_MIPI_CSI_VRES_640
|
|
bool "640"
|
|
config EXAMPLE_MIPI_CSI_VRES_1280
|
|
bool "1280"
|
|
endchoice
|
|
|
|
config EXAMPLE_MIPI_CSI_DISP_VRES
|
|
int
|
|
default 640 if EXAMPLE_MIPI_CSI_VRES_640
|
|
default 1280 if EXAMPLE_MIPI_CSI_VRES_1280
|
|
endmenu
|