@@ -51,8 +51,8 @@ CFE_Status_t SAMPLE_APP_SendHkCmd(const SAMPLE_APP_SendHkCmd_t *Msg)
5151 /*
5252 ** Get command execution counters...
5353 */
54- SAMPLE_APP_Data .HkTlm .Payload .CommandErrorCounter = SAMPLE_APP_Data .ErrCounter ;
55- SAMPLE_APP_Data .HkTlm .Payload .CommandCounter = SAMPLE_APP_Data .CmdCounter ;
54+ SAMPLE_APP_Data .HkTlm .Payload .CommandErrorCounter = SAMPLE_APP_Data .CommandErrorCounter ;
55+ SAMPLE_APP_Data .HkTlm .Payload .CommandCounter = SAMPLE_APP_Data .CommandCounter ;
5656
5757 /*
5858 ** Send housekeeping telemetry packet...
@@ -78,7 +78,7 @@ CFE_Status_t SAMPLE_APP_SendHkCmd(const SAMPLE_APP_SendHkCmd_t *Msg)
7878/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * **/
7979CFE_Status_t SAMPLE_APP_NoopCmd (const SAMPLE_APP_NoopCmd_t * Msg )
8080{
81- SAMPLE_APP_Data .CmdCounter ++ ;
81+ SAMPLE_APP_Data .CommandCounter ++ ;
8282
8383 CFE_EVS_SendEvent (SAMPLE_APP_NOOP_INF_EID ,
8484 CFE_EVS_EventType_INFORMATION ,
@@ -97,8 +97,8 @@ CFE_Status_t SAMPLE_APP_NoopCmd(const SAMPLE_APP_NoopCmd_t *Msg)
9797/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
9898CFE_Status_t SAMPLE_APP_ResetCountersCmd (const SAMPLE_APP_ResetCountersCmd_t * Msg )
9999{
100- SAMPLE_APP_Data .CmdCounter = 0 ;
101- SAMPLE_APP_Data .ErrCounter = 0 ;
100+ SAMPLE_APP_Data .CommandCounter = 0 ;
101+ SAMPLE_APP_Data .CommandErrorCounter = 0 ;
102102
103103 CFE_EVS_SendEvent (SAMPLE_APP_RESET_INF_EID , CFE_EVS_EventType_INFORMATION , "SAMPLE: RESET command" );
104104
@@ -119,7 +119,7 @@ CFE_Status_t SAMPLE_APP_ProcessCmd(const SAMPLE_APP_ProcessCmd_t *Msg)
119119 const char * TableName = "SAMPLE_APP.ExampleTable" ;
120120
121121 /* Sample Use of Example Table */
122- SAMPLE_APP_Data .CmdCounter ++ ;
122+ SAMPLE_APP_Data .CommandCounter ++ ;
123123 Status = CFE_TBL_GetAddress (& TblAddr , SAMPLE_APP_Data .TblHandles [0 ]);
124124 if (Status < CFE_SUCCESS )
125125 {
@@ -154,7 +154,7 @@ CFE_Status_t SAMPLE_APP_ProcessCmd(const SAMPLE_APP_ProcessCmd_t *Msg)
154154/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * **/
155155CFE_Status_t SAMPLE_APP_DisplayParamCmd (const SAMPLE_APP_DisplayParamCmd_t * Msg )
156156{
157- SAMPLE_APP_Data .CmdCounter ++ ;
157+ SAMPLE_APP_Data .CommandCounter ++ ;
158158 CFE_EVS_SendEvent (SAMPLE_APP_VALUE_INF_EID ,
159159 CFE_EVS_EventType_INFORMATION ,
160160 "SAMPLE_APP: ValU32=%lu, ValI16=%d, ValStr=%s" ,
0 commit comments