[Morse] Hide structure from Doxygen
This commit is contained in:
parent
e5b6fd849c
commit
971664fa9d
1 changed files with 21 additions and 15 deletions
|
@ -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] = {
|
||||||
|
|
Loading…
Add table
Reference in a new issue