48 lines
890 B
Plaintext
Executable File
48 lines
890 B
Plaintext
Executable File
menu "VIN Devices"
|
|
|
|
config DRIVERS_VIN
|
|
bool "enable vin driver"
|
|
default n
|
|
|
|
config ENABLE_AIISP
|
|
depends on DRIVERS_VIN
|
|
bool "enable aiisp function"
|
|
default n
|
|
|
|
if DRIVERS_VIN
|
|
choice
|
|
depends on DRIVERS_VIN
|
|
prompt "select isp work mode"
|
|
default ISP_READ_THRESHOLD
|
|
|
|
config ISP_READ_THRESHOLD
|
|
bool "read ae threshold from flash"
|
|
|
|
config ISP_FAST_CONVERGENCE
|
|
bool "use HFR to make AE&AWB fast stability(HFR)"
|
|
|
|
config ISP_ONLY_HARD_LIGHTADC
|
|
bool "use hard light_adc(GPADC)"
|
|
|
|
config ISP_HARD_LIGHTADC
|
|
bool "use hard light_adc to make AE&AWB fast stability(GPADC&HFR)"
|
|
endchoice
|
|
|
|
config ISP_NUMBER
|
|
int "isp support number"
|
|
default 1
|
|
range 1 3
|
|
|
|
config SUPPORT_THREE_CAMERA
|
|
bool "isp support three camera"
|
|
default n
|
|
depends on (ISP_NUMBER = 3)
|
|
|
|
menu "sensor driver select"
|
|
source "ekernel/drivers/rtos-hal/hal/source/vin/modules/sensor/Kconfig"
|
|
endmenu
|
|
|
|
endif
|
|
|
|
endmenu
|