Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix #64, Remove extraneous assignments to CFE_SUCCESS #65

Merged
merged 1 commit into from
Feb 23, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion fsw/inc/hs_custom.h
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@
#define HS_UTIL_DIAG_REPORT_EID 103

/**
* \brief HS Set Utilization Paramaters Command Event ID
* \brief HS Set Utilization Parameter Command Event ID
*
* \par Type: Debug
*
Expand Down
2 changes: 1 addition & 1 deletion fsw/inc/hs_events.h
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@

/**
* @file
* Specification for the CFS Health and Safety (HS) event identifers.
* Specification for the CFS Health and Safety (HS) event identifiers.
*/
#ifndef HS_EVENTS_H
#define HS_EVENTS_H
Expand Down
4 changes: 2 additions & 2 deletions fsw/src/hs_app.c
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ HS_AppData_t HS_AppData;
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
void HS_AppMain(void)
{
int32 Status = CFE_SUCCESS;
int32 Status;
uint32 RunStatus = CFE_ES_RunStatus_APP_RUN;
CFE_SB_Buffer_t *BufPtr = NULL;

Expand Down Expand Up @@ -422,7 +422,7 @@ int32 HS_TblInit(void)
{
uint32 TableSize = 0;
uint32 TableIndex = 0;
int32 Status = CFE_SUCCESS;
int32 Status;

/* Register The HS Applications Monitor Table */
TableSize = HS_MAX_MONITORED_APPS * sizeof(HS_AMTEntry_t);
Expand Down
4 changes: 2 additions & 2 deletions fsw/src/hs_custom_internal.h
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,7 @@ void HS_MarkIdleCallback(void);
void HS_UtilDiagReport(void);

/**
* \brief Set Utilization Paramters
* \brief Set Utilization Parameters
*
* \par Description
* This function sets the Utilization Parameters.
Expand All @@ -236,7 +236,7 @@ void HS_UtilDiagReport(void);
void HS_SetUtilParamsCmd(const CFE_SB_Buffer_t *BufPtr);

/**
* \brief Set Utilization Diagnostics Paramater
* \brief Set Utilization Diagnostics Parameter
*
* \par Description
* This function sets the utilization diagnostics parameter.
Expand Down