Skip to content

Commit 47d613c

Browse files
committed
Merge pull request #2033 from skliper/fix2032-appinfo_element_doc
Fix #2032, Add CFE_ES_AppInfo_t element documentation
2 parents c1aa63d + 3cd97e9 commit 47d613c

File tree

1 file changed

+9
-14
lines changed

1 file changed

+9
-14
lines changed

modules/core_api/fsw/inc/cfe_es_extern_typedefs.h

Lines changed: 9 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -434,10 +434,8 @@ typedef uint32 CFE_ES_MemAddress_t;
434434
*/
435435
typedef struct CFE_ES_MemAddOff
436436
{
437-
CFE_ES_MemAddress_t Address;
438-
439-
CFE_ES_MemOffset_t Size;
440-
437+
CFE_ES_MemAddress_t Address; /**< \brief Code section address */
438+
CFE_ES_MemOffset_t Size; /**< \brief Code section size */
441439
} CFE_ES_MemAddOff_t;
442440

443441
/*
@@ -468,16 +466,13 @@ typedef struct CFE_ES_AppInfo
468466
char FileName[CFE_MISSION_MAX_PATH_LEN]; /**< \cfetlmmnemonic \ES_APPFILENAME
469467
\brief The Filename of the file containing the Application */
470468

471-
CFE_ES_MemOffset_t StackSize; /**< \cfetlmmnemonic \ES_STACKSIZE
472-
\brief The Stack Size of the Application */
473-
uint32 AddressesAreValid; /**< \cfetlmmnemonic \ES_ADDRVALID
474-
\brief Indicates that the Code, Data, and BSS addresses/sizes are valid */
475-
CFE_ES_MemAddOff_t Code;
476-
477-
CFE_ES_MemAddOff_t Data;
478-
479-
CFE_ES_MemAddOff_t BSS;
480-
469+
CFE_ES_MemOffset_t StackSize; /**< \cfetlmmnemonic \ES_STACKSIZE
470+
\brief The Stack Size of the Application */
471+
uint32 AddressesAreValid; /**< \cfetlmmnemonic \ES_ADDRVALID
472+
\brief Indicates that the Code, Data, and BSS addresses/sizes are valid */
473+
CFE_ES_MemAddOff_t Code; /**< \brief code section address/size structure */
474+
CFE_ES_MemAddOff_t Data; /**< \brief Data section address/size structure */
475+
CFE_ES_MemAddOff_t BSS; /**< \brief BSS section address/size structure */
481476
CFE_ES_MemAddress_t StartAddress; /**< \cfetlmmnemonic \ES_STARTADDR
482477
\brief The Start Address of the Application */
483478
CFE_ES_ExceptionAction_Enum_t ExceptionAction; /**< \cfetlmmnemonic \ES_EXCEPTNACTN

0 commit comments

Comments
 (0)