Fix comments in LoRaMacCallback_t

It seems the comment for GetDevAddress was copied from GetUniqueId, but
not changend sufficiently to be correct.
This commit is contained in:
Matthijs Kooijman 2022-12-15 08:53:55 +01:00
parent 378e461e46
commit 8372970ad4
1 changed files with 3 additions and 3 deletions

View File

@ -3131,15 +3131,15 @@ typedef struct sLoRaMacCallback
*/
int16_t ( *GetTemperatureLevel )( void );
/*!
* \brief Get the board 64 bits unique ID
* \brief Get the board 64 bits unique ID (for OTAA)
*
* \param [out] id unique
*/
void ( *GetUniqueId )(uint8_t *id);
/*!
* \brief Get the 64 bits unique Device address
* \brief Get the 32 bits Device address (for ABP)
*
* \param [out] id unique
* \param [out] id devaddr
*/
void ( *GetDevAddress )(uint32_t *devAddr);
/*!