Skip to content

Commit

Permalink
Merge pull request #2033 from skliper/fix2032-appinfo_element_doc
Browse files Browse the repository at this point in the history
Fix #2032, Add CFE_ES_AppInfo_t element documentation
  • Loading branch information
astrogeco committed Jan 21, 2022
2 parents c1aa63d + 3cd97e9 commit 47d613c
Showing 1 changed file with 9 additions and 14 deletions.
23 changes: 9 additions & 14 deletions modules/core_api/fsw/inc/cfe_es_extern_typedefs.h
Original file line number Diff line number Diff line change
Expand Up @@ -434,10 +434,8 @@ typedef uint32 CFE_ES_MemAddress_t;
*/
typedef struct CFE_ES_MemAddOff
{
CFE_ES_MemAddress_t Address;

CFE_ES_MemOffset_t Size;

CFE_ES_MemAddress_t Address; /**< \brief Code section address */
CFE_ES_MemOffset_t Size; /**< \brief Code section size */
} CFE_ES_MemAddOff_t;

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

CFE_ES_MemOffset_t StackSize; /**< \cfetlmmnemonic \ES_STACKSIZE
\brief The Stack Size of the Application */
uint32 AddressesAreValid; /**< \cfetlmmnemonic \ES_ADDRVALID
\brief Indicates that the Code, Data, and BSS addresses/sizes are valid */
CFE_ES_MemAddOff_t Code;

CFE_ES_MemAddOff_t Data;

CFE_ES_MemAddOff_t BSS;

CFE_ES_MemOffset_t StackSize; /**< \cfetlmmnemonic \ES_STACKSIZE
\brief The Stack Size of the Application */
uint32 AddressesAreValid; /**< \cfetlmmnemonic \ES_ADDRVALID
\brief Indicates that the Code, Data, and BSS addresses/sizes are valid */
CFE_ES_MemAddOff_t Code; /**< \brief code section address/size structure */
CFE_ES_MemAddOff_t Data; /**< \brief Data section address/size structure */
CFE_ES_MemAddOff_t BSS; /**< \brief BSS section address/size structure */
CFE_ES_MemAddress_t StartAddress; /**< \cfetlmmnemonic \ES_STARTADDR
\brief The Start Address of the Application */
CFE_ES_ExceptionAction_Enum_t ExceptionAction; /**< \cfetlmmnemonic \ES_EXCEPTNACTN
Expand Down

0 comments on commit 47d613c

Please sign in to comment.