2021-11-11 15:12:07 +01:00
|
|
|
#
|
|
|
|
# For a description of the syntax of this configuration file,
|
|
|
|
# see the file kconfig-language.txt in the NuttX tools repository.
|
|
|
|
#
|
|
|
|
|
|
|
|
menuconfig SYSTEM_INPUT
|
|
|
|
tristate "Enable input tool"
|
|
|
|
default n
|
2022-02-16 13:24:28 +01:00
|
|
|
depends on INPUT_UINPUT
|
2021-11-11 15:12:07 +01:00
|
|
|
---help---
|
|
|
|
Enable support for a command line input tool.
|
|
|
|
|
|
|
|
if SYSTEM_INPUT
|
|
|
|
|
|
|
|
config SYSTEM_INPUT_STACKSIZE
|
|
|
|
int "system/input stack size"
|
|
|
|
default DEFAULT_TASK_STACKSIZE
|
|
|
|
---help---
|
|
|
|
The size of stack allocated for the input task.
|
|
|
|
|
|
|
|
config SYSTEM_INPUT_PRIORITY
|
|
|
|
int "input priority"
|
|
|
|
default 100
|
|
|
|
---help---
|
|
|
|
The priority of the input task.
|
|
|
|
|
|
|
|
|
|
|
|
endif # SYSTEM_INPUT
|