nuttx-apps/examples/hello_d/Kconfig

30 lines
624 B
Plaintext
Raw Normal View History

2024-06-05 19:15:15 +02:00
#
# For a description of the syntax of this configuration file,
# see the file kconfig-language.txt in the NuttX tools repository.
#
config EXAMPLES_HELLO_D
tristate "\"Hello, D!\" D example"
default n
---help---
Enable the \"Hello, D!\" D example
if EXAMPLES_HELLO_D
config EXAMPLES_HELLO_D_PROGNAME
string "Program name"
default "hello_d"
---help---
This is the name of the program that will be used when the
program is installed.
config EXAMPLES_HELLO_D_PRIORITY
int "Hello D task priority"
default 100
config EXAMPLES_HELLO_D_STACKSIZE
int "Hello D stack size"
default DEFAULT_TASK_STACKSIZE
endif