File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 70
70
* \par Command Verification
71
71
* Evidence of success may be found in the following telemetry:
72
72
* - #DS_HkTlm_Payload_t.CmdAcceptedCounter will reset to zero
73
- * - The #DS_RESET_INF_EID debug event message will be sent
73
+ * - The #DS_RESET_INF_EID informational event message will be sent
74
74
*
75
75
* \par Error Conditions
76
76
* This command can fail for the following reasons:
612
612
613
613
/**\}*/
614
614
615
- #endif
615
+ #endif
Original file line number Diff line number Diff line change @@ -103,7 +103,7 @@ void DS_ResetCountersCmd(const CFE_SB_Buffer_t *BufPtr)
103
103
DS_AppData .FilterTblLoadCounter = 0 ;
104
104
DS_AppData .FilterTblErrCounter = 0 ;
105
105
106
- CFE_EVS_SendEvent (DS_RESET_INF_EID , CFE_EVS_EventType_DEBUG , "Reset counters command" );
106
+ CFE_EVS_SendEvent (DS_RESET_INF_EID , CFE_EVS_EventType_INFORMATION , "Reset counters command" );
107
107
}
108
108
109
109
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
Original file line number Diff line number Diff line change @@ -91,7 +91,7 @@ void DS_ResetCountersCmd_Test_Nominal(void)
91
91
92
92
UtAssert_STUB_COUNT (CFE_EVS_SendEvent , 1 );
93
93
UtAssert_INT32_EQ (context_CFE_EVS_SendEvent [0 ].EventID , DS_RESET_INF_EID );
94
- UtAssert_INT32_EQ (context_CFE_EVS_SendEvent [0 ].EventType , CFE_EVS_EventType_DEBUG );
94
+ UtAssert_INT32_EQ (context_CFE_EVS_SendEvent [0 ].EventType , CFE_EVS_EventType_INFORMATION );
95
95
96
96
/* Verify command struct size minus header is at least explicitly padded to 32-bit boundaries */
97
97
UtAssert_True (CMD_STRUCT_DATA_IS_32_ALIGNED (DS_ResetCountersCmd_t ), "DS_ResetCountersCmd_t is 32-bit aligned" );
You can’t perform that action at this time.
0 commit comments