You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

28 lines
587 B

#
# 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
select INPUT_UINPUT
---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