2012-04-06 18:33:17 +02:00
|
|
|
#
|
|
|
|
# For a description of the syntax of this configuration file,
|
2015-06-28 16:14:53 +02:00
|
|
|
# see the file kconfig-language.txt in the NuttX tools repository.
|
2012-04-06 18:33:17 +02:00
|
|
|
#
|
2012-04-13 04:14:09 +02:00
|
|
|
|
2014-09-20 22:25:51 +02:00
|
|
|
config EXAMPLES_NXTERM
|
2018-09-03 17:29:56 +02:00
|
|
|
tristate "NxTerm example"
|
2012-04-13 04:14:09 +02:00
|
|
|
default n
|
2019-03-06 19:52:22 +01:00
|
|
|
depends on NXTERM
|
2017-10-14 22:18:45 +02:00
|
|
|
select LIB_BOARDCTL
|
2012-04-13 04:14:09 +02:00
|
|
|
---help---
|
2014-09-20 22:51:48 +02:00
|
|
|
Enable the NxTerm example
|
2012-04-13 04:14:09 +02:00
|
|
|
|
2014-09-20 22:25:51 +02:00
|
|
|
if EXAMPLES_NXTERM
|
2019-03-06 19:52:22 +01:00
|
|
|
|
|
|
|
config EXAMPLES_NXTERM_PROGNAME
|
|
|
|
string "Program name"
|
|
|
|
default "nxterm"
|
|
|
|
depends on BUILD_LOADABLE
|
|
|
|
---help---
|
2019-08-23 19:59:28 +02:00
|
|
|
This is the name of the program that will be used when the NSH ELF
|
2019-03-06 19:52:22 +01:00
|
|
|
program is installed.
|
|
|
|
|
|
|
|
config EXAMPLES_NXTERM_PRIORITY
|
|
|
|
int "NxTerm task priority"
|
|
|
|
default 100
|
|
|
|
|
|
|
|
config EXAMPLES_NXTERM_STACKSIZE
|
|
|
|
int "NxTerm stack size"
|
|
|
|
default 2048
|
|
|
|
|
|
|
|
config EXAMPLES_NXTERM_LISTENERPRIO
|
|
|
|
int "Listener priority"
|
|
|
|
default 100
|
|
|
|
|
|
|
|
config EXAMPLES_NXTERM_CLIENTPRIO
|
|
|
|
int "Client priority"
|
|
|
|
default 100
|
|
|
|
|
|
|
|
config EXAMPLES_NXTERM_SERVERPRIO
|
|
|
|
int "Server priority"
|
|
|
|
default 120
|
|
|
|
|
|
|
|
config EXAMPLES_NXTERM_NOTIFYSIGNO
|
|
|
|
int "Notification signal"
|
|
|
|
default 4
|
|
|
|
range 1 31
|
|
|
|
|
|
|
|
config EXAMPLES_NXTERM_BPP
|
|
|
|
int "Pixel width"
|
|
|
|
default 16
|
|
|
|
range 1 32
|
|
|
|
---help---
|
|
|
|
The only valid selections are 1, 2, 4, 8, 16, and 32. The
|
|
|
|
corresponding NX disable selection (e.g., CONFIG_NX_DISABLE_16BPP),
|
|
|
|
must not be set.
|
|
|
|
|
|
|
|
config EXAMPLES_NXTERM_BGCOLOR
|
|
|
|
hex "Background color"
|
|
|
|
default 0x2211
|
|
|
|
|
|
|
|
config EXAMPLES_NXTERM_WCOLOR
|
|
|
|
hex "Window color"
|
|
|
|
default 0xcf1f
|
|
|
|
|
|
|
|
config EXAMPLES_NXTERM_TOOLBAR_HEIGHT
|
|
|
|
int "Toolbar height"
|
|
|
|
default 16
|
|
|
|
|
|
|
|
config EXAMPLES_NXTERM_TBCOLOR
|
|
|
|
hex "Toolbar color"
|
|
|
|
default 0xbdf7
|
|
|
|
|
|
|
|
config EXAMPLES_NXTERM_FONTID
|
|
|
|
int "Font ID"
|
|
|
|
default 16
|
|
|
|
|
|
|
|
config EXAMPLES_NXTERM_FONTCOLOR
|
|
|
|
hex "Font color"
|
|
|
|
default 0x0000
|
|
|
|
|
2012-04-13 04:14:09 +02:00
|
|
|
endif
|