2022-08-15 18:46:53 +02:00
|
|
|
#
|
|
|
|
# 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"
|
2022-11-28 10:12:25 +01:00
|
|
|
select UINPUT_TOUCH
|
|
|
|
select UINPUT_BUTTONS
|
2022-08-15 18:46:53 +02:00
|
|
|
default n
|
|
|
|
|
|
|
|
if TESTING_MONKEY
|
|
|
|
|
|
|
|
config TESTING_MONKEY_PRIORITY
|
|
|
|
int "Task priority"
|
|
|
|
default 110
|
|
|
|
|
|
|
|
config TESTING_MONKEY_STACKSIZE
|
|
|
|
int "Stack size"
|
2023-09-11 13:18:15 +02:00
|
|
|
default 4096
|
2022-08-15 18:46:53 +02:00
|
|
|
|
|
|
|
config TESTING_MONKEY_REC_DIR_PATH
|
|
|
|
string "Recorder directory path"
|
|
|
|
default "/data/monkey"
|
|
|
|
|
|
|
|
endif
|