Skip to content

Commit 0325fda

Browse files
chillfigdzbaker
authored andcommitted
Fix #29, Reorders prototypes to match implementation
1 parent ceed7e7 commit 0325fda

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

fsw/src/sample_app_cmds.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,9 @@
3131
#include "sample_app_msg.h"
3232

3333
CFE_Status_t SAMPLE_APP_SendHkCmd(const SAMPLE_APP_SendHkCmd_t *Msg);
34+
CFE_Status_t SAMPLE_APP_NoopCmd(const SAMPLE_APP_NoopCmd_t *Msg);
3435
CFE_Status_t SAMPLE_APP_ResetCountersCmd(const SAMPLE_APP_ResetCountersCmd_t *Msg);
3536
CFE_Status_t SAMPLE_APP_ProcessCmd(const SAMPLE_APP_ProcessCmd_t *Msg);
36-
CFE_Status_t SAMPLE_APP_NoopCmd(const SAMPLE_APP_NoopCmd_t *Msg);
3737
CFE_Status_t SAMPLE_APP_DisplayParamCmd(const SAMPLE_APP_DisplayParamCmd_t *Msg);
3838

3939
#endif /* SAMPLE_APP_CMDS_H */

fsw/src/sample_app_dispatch.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,8 @@
3131
#include "cfe.h"
3232
#include "sample_app_msg.h"
3333

34-
void SAMPLE_APP_TaskPipe(const CFE_SB_Buffer_t *SBBufPtr);
35-
void SAMPLE_APP_ProcessGroundCommand(const CFE_SB_Buffer_t *SBBufPtr);
3634
bool SAMPLE_APP_VerifyCmdLength(const CFE_MSG_Message_t *MsgPtr, size_t ExpectedLength);
35+
void SAMPLE_APP_ProcessGroundCommand(const CFE_SB_Buffer_t *SBBufPtr);
36+
void SAMPLE_APP_TaskPipe(const CFE_SB_Buffer_t *SBBufPtr);
3737

3838
#endif /* SAMPLE_APP_DISPATCH_H */

0 commit comments

Comments
 (0)