nuttx-apps/examples/termios/Kconfig

25 lines
570 B
Plaintext
Raw Normal View History

2021-03-10 19:25:34 +01:00
#
# For a description of the syntax of this configuration file,
# see the file kconfig-language.txt in the NuttX tools repository.
#
config EXAMPLES_TERMIOS
tristate "Termios example"
default n
---help---
Enable the Termios example. This example
shows how to change serial parameters like baud rate,
2021-03-12 18:57:14 +01:00
stop bits, data length and parity using the termios interface.
2021-03-10 19:25:34 +01:00
if EXAMPLES_TERMIOS
config EXAMPLES_TERMIOS_PRIORITY
int "Termios task priority"
default 100
config EXAMPLES_TERMIOS_STACKSIZE
int "Termios stack size"
default DEFAULT_TASK_STACKSIZE
endif