53 lines
1.1 KiB
Plaintext
53 lines
1.1 KiB
Plaintext
#
|
|
# For a description of the syntax of this configuration file,
|
|
# see the file kconfig-language.txt in the NuttX tools repository.
|
|
#
|
|
|
|
menuconfig VNCSERVER
|
|
bool "VNC server"
|
|
default n
|
|
depends on NET_TCP && !NX_LCDDRIVER && EXPERIMENTAL
|
|
---help---
|
|
Enable support for a VNC Remote Frame Buffer (RFB) server.
|
|
|
|
if VNCSERVER
|
|
|
|
choice
|
|
prompt "VNC server protocol"
|
|
default VNCSERVER_PROTO3p3
|
|
|
|
config VNCSERVER_PROTO3p3
|
|
bool "Version 3.3"
|
|
|
|
config VNCSERVER_PROTO3p3
|
|
bool "Version 3.8"
|
|
depends on EXPERIMENTAL
|
|
|
|
endchoice # VNC server protocol
|
|
|
|
config VNCSERVER_NDISPLAYS
|
|
int "Number of displays"
|
|
default 1
|
|
range 1 99
|
|
---help---
|
|
Specifies the number of RFB displays supported by the server.
|
|
Normally this should be one.
|
|
|
|
config VNCSERVER_PRIO
|
|
int "VNC server thread priority"
|
|
default 100
|
|
|
|
config VNCSERVER_STACKSIZE
|
|
int "VNC server stack size"
|
|
default 2048
|
|
|
|
config VNCSERVER_KBDENCODE
|
|
bool "Encode keyboard input"
|
|
default n
|
|
depends on NXTERM_NXKBDIN
|
|
---help---
|
|
Use a special encoding of keyboard characters as defined in
|
|
include/nuttx/input/kbd_coded.h.
|
|
|
|
endif # VNCSERVER
|