Skip to content

Commit

Permalink
Merge pull request #66 from astrogeco/standardize-version.h
Browse files Browse the repository at this point in the history
HOTFIX #60, Standardize version information
  • Loading branch information
astrogeco committed Mar 25, 2022
2 parents e2335c0 + 7bc0338 commit 13d350a
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions cfe_ts_crc_version.h
Original file line number Diff line number Diff line change
Expand Up @@ -34,17 +34,18 @@
"v1.3.0-rc4+dev" /*!< @brief Development Build: git tag that is the base for the current */

/*
* Version Macro Definitions
* Version Macros, see \ref cfsversions for definitions.
*/
#define CFE_TS_CRC_MAJOR_VERSION 1 /*!< @brief ONLY APPLY for OFFICIAL releases. Major version number. */
#define CFE_TS_CRC_MINOR_VERSION 1 /*!< @brief ONLY APPLY for OFFICIAL releases. Minor version number. */
#define CFE_TS_CRC_REVISION 0 /*!< @brief ONLY APPLY for OFFICIAL releases. Revision number. */
#define CFE_TS_CRC_MAJOR_VERSION 1 /*!< @brief Major version number */
#define CFE_TS_CRC_MINOR_VERSION 1 /*!< @brief Minor version number */
#define CFE_TS_CRC_REVISION 99 /*!< @brief Revision version number. Value of 99 indicates a development version.*/

/*!
* @brief Mission revision.
*
* Set to 0 on OFFICIAL releases, and set to 255 (0xFF) on development versions.
* Values 1-254 are reserved for mission use to denote patches/customizations as needed.
* Reserved for mission use to denote patches/customizations as needed.
* Values 1-254 are reserved for mission use to denote patches/customizations as needed. NOTE: Reserving 0 and 0xFF for
* cFS open-source development use (pending resolution of nasa/cFS#440)
*/
#define CFE_TS_CRC_MISSION_REV 0xFF

Expand Down

0 comments on commit 13d350a

Please sign in to comment.