mirror of
https://github.com/apache/nuttx-apps.git
synced 2026-08-02 04:39:01 +00:00
Adds an example application leveraging the Morsey library for transmitting Morse code, either to the console (debug) or to GPIO devices for now as the two supported sinks. Signed-off-by: Matteo Golin <matteo.golin@gmail.com>
30 lines
680 B
Text
30 lines
680 B
Text
#
|
|
# For a description of the syntax of this configuration file,
|
|
# see the file kconfig-language.txt in the NuttX tools repository.
|
|
#
|
|
|
|
config EXAMPLES_TXMORSE
|
|
tristate "txmorse (Morse code transmitter)"
|
|
default n
|
|
depends on AUDIOUTILS_MORSEY
|
|
---help---
|
|
Enable the Morse code transmission example.
|
|
|
|
if EXAMPLES_TXMORSE
|
|
|
|
config EXAMPLES_TXMORSE_PROGNAME
|
|
string "Program name"
|
|
default "txmorse"
|
|
---help---
|
|
This is the name of the program that will be used when the NSH ELF
|
|
program is installed.
|
|
|
|
config EXAMPLES_TXMORSE_PRIORITY
|
|
int "txmorse task priority"
|
|
default 100
|
|
|
|
config EXAMPLES_TXMORSE_STACKSIZE
|
|
int "txmorse stack size"
|
|
default DEFAULT_TASK_STACKSIZE
|
|
|
|
endif
|