Added missing Doxygen comments

pull/113/head
jgromes 2020-02-14 08:39:10 +01:00
rodzic ddb478afff
commit e68146bcde
2 zmienionych plików z 23 dodań i 0 usunięć

Wyświetl plik

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

Wyświetl plik

@ -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