Skip to content

Commit

Permalink
Fix #106, Apply header guard standard
Browse files Browse the repository at this point in the history
  • Loading branch information
skliper committed Feb 4, 2022
1 parent 242fbe7 commit 5a3f320
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 39 deletions.
25 changes: 9 additions & 16 deletions fsw/mission_inc/sch_lab_perfids.h
Original file line number Diff line number Diff line change
Expand Up @@ -17,22 +17,15 @@
** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
** See the License for the specific language governing permissions and
** limitations under the License.
**
** File: sch_lab_perfids.h
**
** Purpose:
** Define SCH Lab Performance IDs
**
** Notes:
**
*************************************************************************/
#ifndef _sch_lab_perfids_h_
#define _sch_lab_perfids_h_
*/

#define SCH_MAIN_TASK_PERF_ID 36
/**
* @file
* Define SCH Lab Performance IDs
*/
#ifndef SCH_LAB_PERFIDS_H
#define SCH_LAB_PERFIDS_H

#endif /* _sch_lab_perfids_h_ */
#define SCH_MAIN_TASK_PERF_ID 36

/************************/
/* End of File Comment */
/************************/
#endif
25 changes: 11 additions & 14 deletions fsw/platform_inc/sch_lab_table.h
Original file line number Diff line number Diff line change
Expand Up @@ -17,19 +17,16 @@
** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
** See the License for the specific language governing permissions and
** limitations under the License.
**
** File: sch_lab_table.h
**
** Purpose:
** This file contains the schedule tables for the SCH Lab app.
** It is intended to go in the platform include directory so the SCH_LAB
** app source code does not have to be modified.
**
** Notes:
**
*************************************************************************/
#ifndef sch_lab_sched_tab_h_
#define sch_lab_sched_tab_h_
*/

/**
* @file
* This file contains the schedule tables for the SCH Lab app.
* It is intended to go in the platform include directory so the SCH_LAB
* app source code does not have to be modified.
*/
#ifndef SCH_LAB_TABLE_H
#define SCH_LAB_TABLE_H

#include "cfe_sb_extern_typedefs.h" /* for CFE_SB_MsgId_t */
#include "cfe_msg_api_typedefs.h" /* For CFE_MSG_FcnCode_t */
Expand Down Expand Up @@ -58,4 +55,4 @@ typedef struct
SCH_LAB_ScheduleTableEntry_t Config[SCH_LAB_MAX_SCHEDULE_ENTRIES];
} SCH_LAB_ScheduleTable_t;

#endif /* sch_lab_sched_tab_h_ */
#endif
12 changes: 3 additions & 9 deletions fsw/src/sch_lab_version.h
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,9 @@
#ifndef SCH_LAB_VERSION_H
#define SCH_LAB_VERSION_H

/*! @file SCH_LAB_version.h
* @brief Purpose:
*
/**
* @file
* The SCH Lab Application header file containing version information
*
*/

/* Development Build Macro Definitions */
Expand Down Expand Up @@ -65,8 +63,4 @@
" SCH Lab DEVELOPMENT BUILD " SCH_LAB_VERSION \
", Last Official Release: v2.3.0" /* For full support please use this version */

#endif /* SCH_LAB_VERSION_H */

/************************/
/* End of File Comment */
/************************/
#endif

0 comments on commit 5a3f320

Please sign in to comment.