This is an automated email from the ASF dual-hosted git repository. xiaoxiang781216 pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/nuttx.git
commit ba0ad5f489be303d956b784c07aa255bf83b6fea Author: Matteo Golin <[email protected]> AuthorDate: Mon Jul 20 18:56:24 2026 -0400 docs/applications/audioutils: Document Morsey library Includes documentation about how to include and use the Morsey library for transmitting Morse code. Signed-off-by: Matteo Golin <[email protected]> --- Documentation/applications/audioutils/morsey/index.rst | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/Documentation/applications/audioutils/morsey/index.rst b/Documentation/applications/audioutils/morsey/index.rst new file mode 100644 index 00000000000..2578abd312c --- /dev/null +++ b/Documentation/applications/audioutils/morsey/index.rst @@ -0,0 +1,16 @@ +========================= +``morsey`` Morsey library +========================= + +``morsey`` is a simple library for parsing ASCII text into Morse code marks, and +playing Morse using a user-defined interface. + +To use the ``morsey`` library, include it like so: + +.. code:: c + + #include <audioutils/morsey.h> + +See the `Morsey repository <https://github.com/linguini1/morsey>`_ for +documentation on how to use the library. Note that there is also an included +``example.c`` file where Morse code is printed to the console.
