2024-04-22 05:20:53 -04:00
|
|
|
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
|
|
|
|
|
2024-04-24 04:59:20 -04:00
|
|
|
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"
|
2024-04-22 05:20:53 -04:00
|
|
|
default EXAMPLE_MIPI_CSI_VRES_640
|
|
|
|
|
|
|
|
config EXAMPLE_MIPI_CSI_VRES_640
|
|
|
|
bool "640"
|
|
|
|
config EXAMPLE_MIPI_CSI_VRES_1280
|
|
|
|
bool "1280"
|
|
|
|
endchoice
|
|
|
|
|
2024-04-24 04:59:20 -04:00
|
|
|
config EXAMPLE_MIPI_CSI_DISP_VRES
|
|
|
|
int
|
|
|
|
default 640 if EXAMPLE_MIPI_CSI_VRES_640
|
|
|
|
default 1280 if EXAMPLE_MIPI_CSI_VRES_1280
|
2024-04-22 05:20:53 -04:00
|
|
|
endmenu
|