Skip to content

Commit

Permalink
Fix #6, Remove deprecated dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
skliper committed Sep 10, 2019
1 parent 1276f64 commit 7eb5420
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions fsw/src/sch_lab_app.c
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ void SCH_Lab_AppMain(void)
int i;
int32 rtnStat;
uint32 SCH_OneHzPktsRcvd = 0;
uint32 RunStatus = CFE_ES_APP_RUN;
uint32 RunStatus = CFE_ES_RunStatus_APP_RUN;
CFE_SB_PipeId_t SCH_CmdPipe;

CFE_ES_PerfLogEntry(SCH_MAIN_TASK_PERF_ID);
Expand All @@ -74,7 +74,7 @@ void SCH_Lab_AppMain(void)
{
CFE_SB_InitMsg(&SCH_CmdHeaderTable[i],
SCH_LAB_ScheduleTable[i].MessageID,
sizeof(CFE_SB_CmdHdr_t), TRUE);
sizeof(CFE_SB_CmdHdr_t), true);
}
else
{
Expand Down Expand Up @@ -102,7 +102,7 @@ void SCH_Lab_AppMain(void)
SCH_LAB_MISSION_REV);

/* Loop Forever */
while (CFE_ES_RunLoop(&RunStatus) == TRUE)
while (CFE_ES_RunLoop(&RunStatus) == true)
{
CFE_ES_PerfLogExit(SCH_MAIN_TASK_PERF_ID);

Expand Down

0 comments on commit 7eb5420

Please sign in to comment.