From 8372970ad4f2cfd15b8485e37a1178331ad09b19 Mon Sep 17 00:00:00 2001 From: Matthijs Kooijman Date: Thu, 15 Dec 2022 08:53:55 +0100 Subject: [PATCH] Fix comments in LoRaMacCallback_t It seems the comment for GetDevAddress was copied from GetUniqueId, but not changend sufficiently to be correct. --- Middlewares/Third_Party/LoRaWAN/Mac/LoRaMacInterfaces.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Middlewares/Third_Party/LoRaWAN/Mac/LoRaMacInterfaces.h b/Middlewares/Third_Party/LoRaWAN/Mac/LoRaMacInterfaces.h index 109f144a..ee0cf448 100644 --- a/Middlewares/Third_Party/LoRaWAN/Mac/LoRaMacInterfaces.h +++ b/Middlewares/Third_Party/LoRaWAN/Mac/LoRaMacInterfaces.h @@ -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); /*!