[Morse] Hide structure from Doxygen

This commit is contained in:
jgromes 2019-05-24 19:06:14 +02:00
parent e5b6fd849c
commit 971664fa9d

View file

@ -1,10 +1,16 @@
#include "Morse.h" #include "Morse.h"
// structure to save data about character Morse code // structure to save data about character Morse code
/*!
\cond RADIOLIB_DOXYGEN_HIDDEN
*/
struct Morse_t { struct Morse_t {
char c; // ASCII character char c; // ASCII character
const char* m; // Morse code representation const char* m; // Morse code representation
}; };
/*!
\endcond
*/
// array of all Morse code characters // array of all Morse code characters
static const Morse_t MorseTable[MORSE_LENGTH] = { static const Morse_t MorseTable[MORSE_LENGTH] = {