From c2591555f4e3e823d286c923704c73652885b032 Mon Sep 17 00:00:00 2001 From: "Gerardo E. Cruz-Ortiz" <59618057+astrogeco@users.noreply.github.com> Date: Fri, 25 Mar 2022 16:17:09 -0400 Subject: [PATCH] HOTFIX #163, Standardize versioning information --- fsw/src/sample_app_version.h | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/fsw/src/sample_app_version.h b/fsw/src/sample_app_version.h index 82394ab..35872e6 100644 --- a/fsw/src/sample_app_version.h +++ b/fsw/src/sample_app_version.h @@ -35,17 +35,19 @@ #define SAMPLE_APP_BUILD_BASELINE \ "v1.3.0-rc4" /*!< Development Build: git tag that is the base for the current development */ -/* Version Macro Definitions */ - -#define SAMPLE_APP_MAJOR_VERSION 1 /*!< @brief ONLY APPLY for OFFICIAL releases. Major version number. */ -#define SAMPLE_APP_MINOR_VERSION 1 /*!< @brief ONLY APPLY for OFFICIAL releases. Minor version number. */ -#define SAMPLE_APP_REVISION 0 /*!< @brief ONLY APPLY for OFFICIAL releases. Revision version number. */ +/* + * Version Macros, see \ref cfsversions for definitions. + */ +#define SAMPLE_APP_MAJOR_VERSION 1 /*!< @brief Major version number. */ +#define SAMPLE_APP_MINOR_VERSION 1 /*!< @brief Minor version number. */ +#define SAMPLE_APP_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 SAMPLE_APP_MISSION_REV 0xFF