Skip to content
Open
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
4 changes: 2 additions & 2 deletions fsw/src/hs_dispatch.h
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ void HS_DisableCpuHogVerifyDispatch(const CFE_SB_Buffer_t *BufPtr);
*
* Verifies and processes the received command
*
* \sa #HS_SET_MAX_RESETS_CC
* \sa #HS_RESET_RESETS_PERFORMED_CC
*/
void HS_ResetResetsPerformedVerifyDispatch(const CFE_SB_Buffer_t *BufPtr);

Expand All @@ -182,7 +182,7 @@ void HS_ResetResetsPerformedVerifyDispatch(const CFE_SB_Buffer_t *BufPtr);
*
* Verifies and processes the received command
*
* \sa #HS_RESET_RESETS_PERFORMED_CC
* \sa #HS_SET_MAX_RESETS_CC
*/
void HS_SetMaxResetsVerifyDispatch(const CFE_SB_Buffer_t *BufPtr);

Expand Down
2 changes: 1 addition & 1 deletion fsw/src/hs_eds_dispatch.c
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ static const EdsDispatchTable_HS_Application_CFE_SB_Telecommand_t HS_TC_DISPATCH
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * **/
/* */
/* Purpose: */
/* This routine will process any packet that is received on the SAMPLE */
/* This routine will process any packet that is received on the HS */
/* command pipe. */
/* */
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
Expand Down
5 changes: 2 additions & 3 deletions fsw/tables/hs_emt.c
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,6 @@
#include "hs_tbldefs.h"
#include "cfe_tbl_filedef.h"

CFE_TBL_FileDef_t CFE_TBL_FileDef = {"HS_EventMon_Tbl", HS_APP_NAME ".EventMon_Tbl", "HS EventMon Table", "hs_emt.tbl",
(sizeof(HS_EMTEntry_t) * HS_MAX_MONITORED_EVENTS)};

HS_EMTEntry_t HS_EventMon_Tbl[HS_MAX_MONITORED_EVENTS] = {
/* AppName NullTerm EventID ActionType */

Expand All @@ -54,3 +51,5 @@ HS_EMTEntry_t HS_EventMon_Tbl[HS_MAX_MONITORED_EVENTS] = {
/* 14 */ {"", 0, 10, HS_EMT_ACT_NOACT},
/* 15 */ {"", 0, 10, HS_EMT_ACT_NOACT},
};

CFE_TBL_FILEDEF(HS_EventMon_Tbl, HS.EventMon_Tbl, HS EventMon Table, hs_emt.tbl)
Loading