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

config EXAMPLES_RUST_TEST
	tristate "Rust Test App"
	default n
	---help---
		Enable the Rust Test App

if EXAMPLES_RUST_TEST

config EXAMPLES_RUST_TEST_PROGNAME
	string "Program name"
	default "rust_test"
	---help---
		This is the name of the program that will be used when the NSH ELF
		program is installed.

config EXAMPLES_RUST_TEST_PRIORITY
	int "Rust Test App task priority"
	default 100

config EXAMPLES_RUST_TEST_STACKSIZE
	int "Rust Test App stack size"
	default DEFAULT_TASK_STACKSIZE

endif
