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:
parent
378e461e46
commit
8372970ad4
|
@ -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);
|
||||
/*!
|
||||
|
|
Loading…
Reference in New Issue