Skip to content

Commit

Permalink
Fix #131, Rename CommandCode variable to FcnCode
Browse files Browse the repository at this point in the history
  • Loading branch information
thnkslprpt committed Oct 19, 2022
1 parent 9e2ad8c commit 5be5b45
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions fsw/src/to_lab_app.c
Original file line number Diff line number Diff line change
Expand Up @@ -304,11 +304,11 @@ void TO_LAB_process_commands(void)
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
void TO_LAB_exec_local_command(CFE_SB_Buffer_t *SBBufPtr)
{
CFE_MSG_FcnCode_t CommandCode = 0;
CFE_MSG_FcnCode_t FcnCode = 0;

CFE_MSG_GetFcnCode(&SBBufPtr->Msg, &CommandCode);
CFE_MSG_GetFcnCode(&SBBufPtr->Msg, &FcnCode);

switch (CommandCode)
switch (FcnCode)
{
case TO_LAB_NOOP_CC:
TO_LAB_Noop((const TO_LAB_NoopCmd_t *)SBBufPtr);
Expand Down Expand Up @@ -341,7 +341,7 @@ void TO_LAB_exec_local_command(CFE_SB_Buffer_t *SBBufPtr)
default:
CFE_EVS_SendEvent(TO_LAB_FNCODE_ERR_EID, CFE_EVS_EventType_ERROR,
"L%d TO: Invalid Function Code Rcvd In Ground Command 0x%x", __LINE__,
(unsigned int)CommandCode);
(unsigned int)FcnCode);
++TO_LAB_Global.HkTlm.Payload.CommandErrorCounter;
}
}
Expand Down

0 comments on commit 5be5b45

Please sign in to comment.