#
# For a description of the syntax of this configuration file,
# see the file kconfig-language.txt in the NuttX tools repository.
#

if ARCH_BOARD_SIM

config EXAMPLES_TOUCHSCREEN_BGCOLOR
	hex "Background color for apps/examples/touchscreen"
	default 0x007b68ee
	depends on EXAMPLES_TOUCHSCREEN

config SIM_RPMSG_MASTER
	bool "Rpmsg Master"
	default n
	depends on RPMSG

if SIM_TOUCHSCREEN

comment "NX Server Options"

config SIM_LISTENER_STACKSIZE
	int "NX Server/Listener Stack Size"
	default DEFAULT_TASK_STACKSIZE
	---help---
		The stacksize to use when creating the NX server.  Default 2048

config SIM_CLIENTPRIO
	int "Client Priority"
	default 100
	---help---
		The client priority.  Default: 100

config SIM_SERVERPRIO
	int "Server Priority"
	default 120
	---help---
		The server priority.  Default: 120

config SIM_LISTENERPRIO
	int "Listener Priority"
	default 80
	---help---
		The priority of the event listener thread. Default 80.

endif

config SIM_WTGAHRS2_UARTN
	int "Wtgahrs2 sensor serial interface number"
	default -1
	depends on SENSORS_WTGAHRS2 && SIM_UART_NUMBER > 0
	---help---
		We can select the number according to which SIM_UARTX_NAME is used to sensor.
		This range is 0-4.

config SIM_RNDIS_MACADDR
	hex "RNDIS MAC address"
	default 0xfadedeadbeef
	depends on RNDIS
	---help---
		If the hardware has no built-in MAC address then the fixed,
		software-assigned MAC address MAC address must provided
		with this selection.

endif
