Skip to content

Commit

Permalink
doxygen fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
bradleysmith23 committed Nov 14, 2023
1 parent 25cc1d8 commit 9488457
Showing 1 changed file with 13 additions and 13 deletions.
26 changes: 13 additions & 13 deletions source/otaJobParser/include/job_parser.h
Original file line number Diff line number Diff line change
Expand Up @@ -20,43 +20,43 @@
*/
typedef struct
{
/* @brief Code Signing Signature */
/** @brief Code Signing Signature */
const char * signature;

/* @brief Length of signature */
/** @brief Length of signature */
size_t signatureLen;

/* @brief File path to store OTA Update on device */
/** @brief File path to store OTA Update on device */
const char * filepath;

/* @brief Length of filepath */
/** @brief Length of filepath */
size_t filepathLen;

/* @brief Path to Code Signing Certificate on Device */
/** @brief Path to Code Signing Certificate on Device */
const char * certfile;

/* @brief Length of certfile */
/** @brief Length of certfile */
size_t certfileLen;

/* @brief Authentication Scheme for HTTP URL ( null for MQTT ) */
/** @brief Authentication Scheme for HTTP URL ( null for MQTT ) */
const char * authScheme;

/* @brief Length of authScheme */
/** @brief Length of authScheme */
size_t authSchemeLen;

/* @brief MQTT Stream or HTTP URL */
/** @brief MQTT Stream or HTTP URL */
const char * imageRef;

/* @brief Length of imageRef */
/** @brief Length of imageRef */
size_t imageRefLen;

/* @brief File ID */
/** @brief File ID */
uint32_t fileId;

/* @brief Size of the OTA Update */
/** @brief Size of the OTA Update */
uint32_t fileSize;

/* @brief File Type */
/** @brief File Type */
uint32_t fileType;
} AfrOtaJobDocumentFields_t;

Expand Down

0 comments on commit 9488457

Please sign in to comment.