nuttx-apps/system/cu/Kconfig
Gregory Nutt dabe412e70 Add a minimalist implemention of the 'cu' terminal program (part of Taylor UUCP for ages). Using it, you can simply open a serial port and interact with it. Using '~.' you can leave the terminal program and drop back to nsh.
This might  come in handy for other people that have e.g. GSM modems, GPS receivers or other devices with text based serial communications attached to their Nuttx systems.
2014-12-13 10:36:37 -06:00

34 lines
1000 B
Plaintext

#
# For a description of the syntax of this configuration file,
# see misc/tools/kconfig-language.txt.
#
config SYSTEM_CUTERM
bool "CU serial terminal"
default n
---help---
Enable the CU serial terminal. This is a minimalistic
implementation of the 'cu' terminal program (part of Taylor UUCP for
ages). Using it, you can simply open a serial port and interact with
it. Using '~.' you can leave the terminal program and drop back to nsh.
This terminal might come in handy for other people that have e.g. GS
modems, GPS receivers or other devices with text based serial
communications attached to their Nuttx systems.
if SYSTEM_CUTERM
config SYSTEM_CUTERM_STACKSIZE
int "CU terminal stack size"
default 2048
---help---
This is the stack size that will be used when starting the CU terminal.
config SYSTEM_CUTERM_PRIORITY
int "CU terminal priority"
default 100
---help---
This is the task priority that will be used when starting the CU terminal.
endif # SYSTEM_CUTERM