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 - PhysicalLayer protocols
- RTTY (RTTYClient) - RTTY (RTTYClient)
- Morse Code (MorseClient) - Morse Code (MorseClient)
- AX.25 (AX25Client)
- TransportLayer protocols - TransportLayer protocols
- HTTP (HTTPClient) - HTTP (HTTPClient)
- MQTT (MQTTClient) - MQTT (MQTTClient)

View file

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