Skip to content

Commit c010281

Browse files
committed
Merge pull request #118 from astrogeco/standardize-version.h
HOTFIX #112, Standardize Version Information
2 parents b174a80 + dc63581 commit c010281

File tree

1 file changed

+9
-7
lines changed

1 file changed

+9
-7
lines changed

fsw/src/to_lab_version.h

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -28,17 +28,19 @@
2828
#define TO_LAB_BUILD_BASELINE \
2929
"v2.5.0-rc4" /*!< Development Build: git tag that is the base for the current development */
3030

31-
/* Version Macro Definitions */
32-
33-
#define TO_LAB_MAJOR_VERSION 2 /*!< @brief ONLY APPLY for OFFICIAL releases. Major version number. */
34-
#define TO_LAB_MINOR_VERSION 3 /*!< @brief ONLY APPLY for OFFICIAL releases. Minor version number. */
35-
#define TO_LAB_REVISION 0 /*!< @brief ONLY APPLY for OFFICIAL releases. Revision version number. */
31+
/*
32+
* Version Macros, see \ref cfsversions for definitions.
33+
*/
34+
#define TO_LAB_MAJOR_VERSION 2 /*!< @brief Major version number */
35+
#define TO_LAB_MINOR_VERSION 3 /*!< @brief Minor version number */
36+
#define TO_LAB_REVISION 99 /*!< @brief Revision version number. Value of 99 indicates a development version.*/
3637

3738
/*!
3839
* @brief Mission revision.
3940
*
40-
* Set to 0 on OFFICIAL releases, and set to 255 (0xFF) on development versions.
41-
* Values 1-254 are reserved for mission use to denote patches/customizations as needed.
41+
* Reserved for mission use to denote patches/customizations as needed.
42+
* Values 1-254 are reserved for mission use to denote patches/customizations as needed. NOTE: Reserving 0 and 0xFF for
43+
* cFS open-source development use (pending resolution of nasa/cFS#440)
4244
*/
4345
#define TO_LAB_MISSION_REV 0xFF
4446

0 commit comments

Comments
 (0)