nuttx-apps/system/monkey/Kconfig
Xiang Xiao 85a6aaa322 apps/testing: Move irtest/sensortest/resmonitor/monkey to apps/system
Signed-off-by: Xiang Xiao <xiaoxiang@xiaomi.com>
2025-01-27 02:25:08 +01:00

27 lines
514 B
Text

#
# For a description of the syntax of this configuration file,
# see the file kconfig-language.txt in the NuttX tools repository.
#
menuconfig SYSTEM_MONKEY
tristate "Monkey test"
select UINPUT_TOUCH
select UINPUT_BUTTONS
select LIBC_PRINT_EXTENSION
default n
if SYSTEM_MONKEY
config SYSTEM_MONKEY_PRIORITY
int "Task priority"
default 110
config SYSTEM_MONKEY_STACKSIZE
int "Stack size"
default 4096
config SYSTEM_MONKEY_REC_DIR_PATH
string "Recorder directory path"
default "/data/monkey"
endif