Added missing Doxygen comments

This commit is contained in:
jgromes 2020-02-14 08:39:10 +01:00
parent ddb478afff
commit e68146bcde
2 changed files with 23 additions and 0 deletions

View file

@ -18,6 +18,7 @@
- PhysicalLayer protocols
- RTTY (RTTYClient)
- Morse Code (MorseClient)
- AX.25 (AX25Client)
- TransportLayer protocols
- HTTP (HTTPClient)
- MQTT (MQTTClient)

View file

@ -127,12 +127,34 @@ class AX25Frame {
uint16_t sendSeqNumber;
#ifndef RADIOLIB_STATIC_ONLY
/*!
\brief The info field.
*/
uint8_t* info;
/*!
\brief Array of repeater callsigns.
*/
char** repeaterCallsigns;
/*!
\brief Array of repeater SSIDs.
*/
uint8_t* repeaterSSIDs;
#else
/*!
\brief The info field.
*/
uint8_t info[RADIOLIB_STATIC_ARRAY_SIZE];
/*!
\brief Array of repeater callsigns.
*/
char repeaterCallsigns[8][AX25_MAX_CALLSIGN_LEN + 1];
/*!
\brief Array of repeater SSIDs.
*/
uint8_t repeaterSSIDs[8];
#endif