summaryrefslogtreecommitdiff
path: root/apps/system/cu/Kconfig
blob: 3c3007b5970c1c517624abeacae5b4e4ad3c6a8e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
#
# 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_DEFAULT_DEVICE
	string "Default serial device"
	default "/dev/ttyS0"
	---help---
		Normally, the serial device to be used is provided on the command line.
		If no device is provided then this is the default device that will be\
		used.

config SYSTEM_CUTERM_DEFAULT_BAUD
	int "Default serial baud"
	default 115200
	---help---
		Normally, the BAUD to be used is provided on the command line.  If no
		BAUD is provided then this is the default device that will be used.

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