mirror of
https://github.com/apache/nuttx-apps.git
synced 2025-07-16 11:13:33 +08:00

1. Simplify kconfig configuration items. 2. Use events to control the status of virtual devices and improve testing efficiency. 3. Add adaptive screen resolution support. Signed-off-by: pengyiqiang <pengyiqiang@xiaomi.com>
27 lines
490 B
Plaintext
27 lines
490 B
Plaintext
#
|
|
# For a description of the syntax of this configuration file,
|
|
# see the file kconfig-language.txt in the NuttX tools repository.
|
|
#
|
|
|
|
menuconfig TESTING_MONKEY
|
|
tristate "Monkey test"
|
|
select UINPUT_TOUCH
|
|
select UINPUT_BUTTONS
|
|
default n
|
|
|
|
if TESTING_MONKEY
|
|
|
|
config TESTING_MONKEY_PRIORITY
|
|
int "Task priority"
|
|
default 110
|
|
|
|
config TESTING_MONKEY_STACKSIZE
|
|
int "Stack size"
|
|
default 4096
|
|
|
|
config TESTING_MONKEY_REC_DIR_PATH
|
|
string "Recorder directory path"
|
|
default "/data/monkey"
|
|
|
|
endif
|