Skip to content

Commit c259155

Browse files
committed
HOTFIX nasa#163, Standardize versioning information
1 parent 7edda31 commit c259155

File tree

1 file changed

+9
-7
lines changed

1 file changed

+9
-7
lines changed

fsw/src/sample_app_version.h

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -35,17 +35,19 @@
3535
#define SAMPLE_APP_BUILD_BASELINE \
3636
"v1.3.0-rc4" /*!< Development Build: git tag that is the base for the current development */
3737

38-
/* Version Macro Definitions */
39-
40-
#define SAMPLE_APP_MAJOR_VERSION 1 /*!< @brief ONLY APPLY for OFFICIAL releases. Major version number. */
41-
#define SAMPLE_APP_MINOR_VERSION 1 /*!< @brief ONLY APPLY for OFFICIAL releases. Minor version number. */
42-
#define SAMPLE_APP_REVISION 0 /*!< @brief ONLY APPLY for OFFICIAL releases. Revision version number. */
38+
/*
39+
* Version Macros, see \ref cfsversions for definitions.
40+
*/
41+
#define SAMPLE_APP_MAJOR_VERSION 1 /*!< @brief Major version number. */
42+
#define SAMPLE_APP_MINOR_VERSION 1 /*!< @brief Minor version number. */
43+
#define SAMPLE_APP_REVISION 99 /**< @brief Revision version number. Value of 99 indicates a development version.*/
4344

4445
/*!
4546
* @brief Mission revision.
4647
*
47-
* Set to 0 on OFFICIAL releases, and set to 255 (0xFF) on development versions.
48-
* Values 1-254 are reserved for mission use to denote patches/customizations as needed.
48+
* Reserved for mission use to denote patches/customizations as needed.
49+
* Values 1-254 are reserved for mission use to denote patches/customizations as needed. NOTE: Reserving 0 and 0xFF for
50+
* cFS open-source development use (pending resolution of nasa/cFS#440)
4951
*/
5052
#define SAMPLE_APP_MISSION_REV 0xFF
5153

0 commit comments

Comments
 (0)