Skip to content

Commit

Permalink
Fix #830, Set Revision to 99 for development build
Browse files Browse the repository at this point in the history
The version number macros major, minor, and revision, are used in the HK telemetry which can lead to confusion.
  • Loading branch information
astrogeco committed Aug 31, 2020
1 parent 06c0826 commit 4d840d8
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions fsw/cfe-core/src/inc/cfe_version.h
Original file line number Diff line number Diff line change
Expand Up @@ -39,10 +39,9 @@
#define CFE_BUILD_BASELINE "v6.8.0-rc1" /*!< Development Build: git tag that is the base for the current development */

/* Version Macro Definitions */

#define CFE_MAJOR_VERSION 6 /*!< @brief ONLY APPLY for OFFICIAL releases. Major version number. */
#define CFE_MINOR_VERSION 7 /*!< @brief ONLY APPLY for OFFICIAL releases. Minor version number. */
#define CFE_REVISION 0 /*!< @brief ONLY APPLY for OFFICIAL releases. Revision version number. */
#define CFE_REVISION 99 /*!< @brief ONLY APPLY for OFFICIAL releases. Revision version number. If set to 99 it indicates a development version. */
#define CFE_MISSION_REV 0 /*!< @brief ONLY USED by MISSION Implementations. Mission revision */

#define CFE_STR_HELPER(x) #x /*!< @brief Helper function to concatenate strings from integer macros */
Expand Down

0 comments on commit 4d840d8

Please sign in to comment.