Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix #34, Build fails with deprecated cFE/OSAL elements removed #29

Merged
merged 1 commit into from
Feb 25, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions fsw/src/sch_lab_app.c
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ void SCH_Lab_AppMain(void)
int i;
uint32 SCH_OneHzPktsRcvd = 0;
uint32 Status = CFE_SUCCESS;
uint32 RunStatus = CFE_ES_APP_RUN;
uint32 RunStatus = CFE_ES_RunStatus_APP_RUN;

CFE_ES_PerfLogEntry(SCH_MAIN_TASK_PERF_ID);

Expand All @@ -87,7 +87,7 @@ void SCH_Lab_AppMain(void)
}

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

Expand Down Expand Up @@ -199,7 +199,7 @@ int32 SCH_LAB_AppInit(void)
{
CFE_SB_InitMsg(&SCH_CmdHeaderTable[i],
MySchTBL->MessageID[i],
sizeof(CFE_SB_CmdHdr_t), TRUE);
sizeof(CFE_SB_CmdHdr_t), true);
}
else
{
Expand Down