Skip to content
Open
Show file tree
Hide file tree
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
1 change: 0 additions & 1 deletion docs/users_guide/html/doxygen.css
Original file line number Diff line number Diff line change
Expand Up @@ -368,7 +368,6 @@ hr {
-moz-border-radius-topleft: 8px;
-moz-border-radius-topright: 8px;
-moz-box-shadow: rgba(0, 0, 0, 0.15) 5px 5px 5px;

}

.memdoc {
Expand Down
4 changes: 0 additions & 4 deletions fsw/mission_inc/sch_perfids.h
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,3 @@
#define SCH_APPMAIN_PERF_ID 36

#endif /* _sch_perfids_h_ */

/************************/
/* End of File Comment */
/************************/
4 changes: 0 additions & 4 deletions fsw/platform_inc/sch_msgids.h
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,3 @@
*/

#endif /* _sch_msgids_h_ */

/************************/
/* End of File Comment */
/************************/
4 changes: 0 additions & 4 deletions fsw/platform_inc/sch_platform_cfg.h
Original file line number Diff line number Diff line change
Expand Up @@ -296,7 +296,3 @@


#endif /* _sch_platform_cfg_h_ */

/************************/
/* End of File Comment */
/************************/
5 changes: 0 additions & 5 deletions fsw/public_inc/sch_api.h
Original file line number Diff line number Diff line change
Expand Up @@ -85,8 +85,3 @@ void SCH_DisableProcessing(void);
boolean SCH_GetProcessingState(void);

#endif /* _sch_api_ */

/************************/
/* End of File Comment */
/************************/

9 changes: 4 additions & 5 deletions fsw/src/sch_api.c
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ SCH_LibData_t SCH_LibData;

/*******************************************************************
**
** SCH_LibInit() -- Initializes the SCH Library
** Initializes the SCH Library
**
** NOTE: For complete prolog information, see 'sch_apipriv.h'.
********************************************************************/
Expand All @@ -47,7 +47,7 @@ int32 SCH_LibInit(void)

/*******************************************************************
**
** SCH_EnableProcessing() -- Enables SCH schedule processing
** Enables SCH schedule processing
**
** NOTE: For complete prolog information, see 'sch_api.h'.
********************************************************************/
Expand All @@ -62,7 +62,7 @@ void SCH_EnableProcessing(void)

/*******************************************************************
**
** SCH_DisableProcessing() -- Disables SCH schedule processing
** Disables SCH schedule processing
**
** NOTE: For complete prolog information, see 'sch_api.h'.
********************************************************************/
Expand All @@ -74,8 +74,7 @@ void SCH_DisableProcessing(void)

/*******************************************************************
**
** SCH_GetProcessingState() -- Obtains the current SCH schedule
** table processing state
** Obtains the current SCH schedule table processing state
**
** NOTE: For complete prolog information, see 'sch_api.h'.
********************************************************************/
Expand Down
4 changes: 0 additions & 4 deletions fsw/src/sch_apipriv.h
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,3 @@ void SCH_DisableProcessing(void);
boolean SCH_GetProcessingState(void);

#endif /* _sch_apipriv_ */

/************************/
/* End of File Comment */
/************************/
79 changes: 12 additions & 67 deletions fsw/src/sch_app.c
Original file line number Diff line number Diff line change
Expand Up @@ -113,9 +113,6 @@ SCH_AppData_t SCH_AppData;
**************************************************************************/

/*******************************************************************
**
** SCH_AppMain
**
** NOTE: For complete prolog information, see 'sch_app.h'
********************************************************************/

Expand Down Expand Up @@ -231,7 +228,6 @@ void SCH_AppMain(void)
*/
RunStatus = CFE_ES_APP_ERROR;
}

} /* End of while */

/*
Expand Down Expand Up @@ -265,14 +261,10 @@ void SCH_AppMain(void)
** Let cFE kill the task (and any child tasks)
*/
CFE_ES_ExitApp(RunStatus);

} /* End of SH_AppMain() */
}


/*******************************************************************
**
** SCH_AppInit
**
** NOTE: For complete prolog information, see above
********************************************************************/

Expand Down Expand Up @@ -351,14 +343,10 @@ int32 SCH_AppInit(void)
SCH_MISSION_REV);

return(Status);

} /* End of SCH_AppInit() */
}


/*******************************************************************
**
** SCH_EvsInit
**
** NOTE: For complete prolog information, see above
********************************************************************/

Expand Down Expand Up @@ -391,14 +379,10 @@ int32 SCH_EvsInit(void)
}

return(Status);

} /* End of SCH_EvsInit() */
}


/*******************************************************************
**
** SCH_SbInit
**
** NOTE: For complete prolog information, see above
********************************************************************/

Expand Down Expand Up @@ -455,14 +439,10 @@ int32 SCH_SbInit(void)
}

return(Status);

} /* End of SCH_SbInit() */
}


/*******************************************************************
**
** SCH_TblInit
**
** NOTE: For complete prolog information, see above
********************************************************************/

Expand Down Expand Up @@ -568,14 +548,10 @@ int32 SCH_TblInit(void)
}

return(Status);

} /* End of SCH_TblInit() */
}


/*******************************************************************
**
** SCH_TimerInit
**
** NOTE: For complete prolog information, see above
********************************************************************/

Expand Down Expand Up @@ -648,14 +624,10 @@ int32 SCH_TimerInit(void)
}

return(Status);

} /* End of SCH_TimerInit() */
}


/*******************************************************************
**
** SCH_ProcessScheduleTable
**
** NOTE: For complete prolog information, see above
********************************************************************/

Expand Down Expand Up @@ -809,14 +781,10 @@ int32 SCH_ProcessScheduleTable(void)
}

return(Result);

} /* End of SCH_ProcessScheduleTable() */
}


/*******************************************************************
**
** SCH_ProcessNextSlot
**
** NOTE: For complete prolog information, see above
********************************************************************/

Expand Down Expand Up @@ -871,14 +839,10 @@ int32 SCH_ProcessNextSlot(void)
SCH_AppData.SlotsProcessedCount++;

return(Result);

} /* End of SCH_ProcessNextSlot() */
}


/*******************************************************************
**
** SCH_ProcessNextEntry
**
** NOTE: For complete prolog information, see above
********************************************************************/

Expand Down Expand Up @@ -965,14 +929,10 @@ void SCH_ProcessNextEntry(SCH_ScheduleEntry_t *NextEntry, int32 EntryNumber)
}

return;

} /* End of SCH_ProcessNextEntry() */
}


/*******************************************************************
**
** SCH_ProcessCommands
**
** NOTE: For complete prolog information, see above
********************************************************************/

Expand Down Expand Up @@ -1002,14 +962,10 @@ int32 SCH_ProcessCommands(void)
}

return(Status);

} /* End of SCH_ProcessCommands() */
}


/*******************************************************************
**
** SCH_ValidateScheduleData
**
** NOTE: For complete prolog information, see above
********************************************************************/

Expand Down Expand Up @@ -1143,14 +1099,10 @@ int32 SCH_ValidateScheduleData(void *TableData)
}

return(TableResult);

} /* End of SCH_ValidateScheduleData() */
}


/*******************************************************************
**
** SCH_ValidateMessageData
**
** NOTE: For complete prolog information, see above
********************************************************************/

Expand Down Expand Up @@ -1262,11 +1214,4 @@ int32 SCH_ValidateMessageData(void *TableData)
}

return(TableResult);

} /* End of SCH_ValidateMessageData() */


/************************/
/* End of File Comment */
/************************/

}
5 changes: 0 additions & 5 deletions fsw/src/sch_app.h
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,6 @@ typedef struct
boolean IgnoreMajorFrame; /**< \brief Major Frame too noisy to trust */
boolean IgnoreMajorFrameMsgSent; /**< \brief Major Frame Event Message has been sent */
boolean UnexpectedMajorFrame; /**< \brief Major Frame signal was unexpected */

} SCH_AppData_t;

/*************************************************************************
Expand Down Expand Up @@ -486,7 +485,3 @@ int32 SCH_ValidateScheduleData(void *TableData);
int32 SCH_ValidateMessageData(void *TableData);

#endif /* _sch_app_ */

/************************/
/* End of File Comment */
/************************/
Loading