Skip to content

Commit

Permalink
Partial #42, naming convention pass thru cf_version.h and cf_verify.h
Browse files Browse the repository at this point in the history
Updates names of all identifiers in cf_version.h and cf_verify.h to follow naming
conventions from CFE.

This only affects include guards
  • Loading branch information
jphickey committed Dec 7, 2021
1 parent eeec9e6 commit 30464ce
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions fsw/src/cf_verify.h
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@
**
*************************************************************************/

#ifndef CF_VERIFY__H
#define CF_VERIFY__H
#ifndef CF_VERIFY_H
#define CF_VERIFY_H

#include "cfe.h"
#include "cf_platform_cfg.h"
Expand Down Expand Up @@ -64,4 +64,4 @@
#error Collision between CF_PERF_ID_PDURCVD and CF_PERF_ID_PDUSENT given number of channels
#endif

#endif /* !CF_VERIFY__H */
#endif /* !CF_VERIFY_H */
6 changes: 3 additions & 3 deletions fsw/src/cf_version.h
Original file line number Diff line number Diff line change
Expand Up @@ -23,14 +23,14 @@
**
**
*************************************************************************/
#ifndef _cf_version_h_
#define _cf_version_h_
#ifndef CF_VERSION_H
#define CF_VERSION_H

#define CF_MAJOR_VERSION 3
#define CF_MINOR_VERSION 0
#define CF_REVISION 0

#endif /* _cf_version_h_ */
#endif /* CF_VERSION_H */

/************************/
/* End of File Comment */
Expand Down

0 comments on commit 30464ce

Please sign in to comment.