aa99d267b7
and remove the unused private signal number macro Signed-off-by: Xiang Xiao <xiaoxiang@xiaomi.com>
77 lines
1.5 KiB
Plaintext
77 lines
1.5 KiB
Plaintext
#
|
|
# For a description of the syntax of this configuration file,
|
|
# see the file kconfig-language.txt in the NuttX tools repository.
|
|
#
|
|
|
|
config EXAMPLES_NXTERM
|
|
tristate "NxTerm example"
|
|
default n
|
|
depends on NXTERM
|
|
select BOARDCTL
|
|
---help---
|
|
Enable the NxTerm example
|
|
|
|
if EXAMPLES_NXTERM
|
|
|
|
config EXAMPLES_NXTERM_PROGNAME
|
|
string "Program name"
|
|
default "nxterm"
|
|
---help---
|
|
This is the name of the program that will be used when the NSH ELF
|
|
program is installed.
|
|
|
|
config EXAMPLES_NXTERM_PRIORITY
|
|
int "NxTerm task priority"
|
|
default 100
|
|
|
|
config EXAMPLES_NXTERM_STACKSIZE
|
|
int "NxTerm stack size"
|
|
default DEFAULT_TASK_STACKSIZE
|
|
|
|
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_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
|
|
|
|
endif
|