23 lines
639 B
Plaintext
23 lines
639 B
Plaintext
menu "test app"
|
|
menuconfig USER_TEST
|
|
bool "Enable application test function "
|
|
default n
|
|
|
|
if USER_TEST
|
|
config USER_TEST_SPI_FLASH
|
|
bool "Config test spi flash"
|
|
default n
|
|
|
|
menuconfig USER_TEST_ADC
|
|
bool "Config test adc"
|
|
default n
|
|
if USER_TEST_ADC
|
|
if ADD_XIUOS_FETURES
|
|
config ADC_DEV_DRIVER
|
|
string "Set ADC dev path"
|
|
default "/dev/adc1_dev"
|
|
endif
|
|
endif
|
|
endif
|
|
endmenu
|