-
Notifications
You must be signed in to change notification settings - Fork 204
Commit
IC: Caelum-rc4+dev6, nasa/cFS#443 - Reverts development version identifier to 99 for revision number
- Loading branch information
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -22,7 +22,7 @@ | |
bug fixes or major documentation updates. | ||
The Revision number may also be updated if there are other changes contained within a release that make | ||
it desirable for applications to distinguish one release from another. | ||
WARNING: The revision number is set to the number 99 in development builds. To distinguish between development | ||
WARNING: The revision number is set to the number 0xFF in development builds. To distinguish between development | ||
This comment has been minimized.
Sorry, something went wrong.
This comment has been minimized.
Sorry, something went wrong.
jphickey
Contributor
|
||
builds refer to the BUILD_NUMBER and BUILD_BASELINE detailed in the section "Identifying Development Builds". | ||
|
||
The Mission Version number is set to zero in all official releases, and is reserved for the mission use. | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -34,15 +34,15 @@ | |
/* Version Macro Definitions updated for official releases only */ | ||
#define CFE_MAJOR_VERSION 6 /**< @brief Major release version (Former for Revision == 99) */ | ||
This comment has been minimized.
Sorry, something went wrong.
skliper
Contributor
|
||
#define CFE_MINOR_VERSION 7 /**< @brief Minor release version (Former for Revision == 99) */ | ||
This comment has been minimized.
Sorry, something went wrong.
skliper
Contributor
|
||
#define CFE_REVISION 0 /*!< @brief ONLY APPLY for OFFICIAL releases. Revision number. */ | ||
#define CFE_REVISION \ | ||
99 /*!< @brief * Set to 0 on OFFICIAL releases, and set to 99 on development versions. Revision number. */ | ||
This comment has been minimized.
Sorry, something went wrong.
skliper
Contributor
|
||
|
||
/*! | ||
* @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. | ||
*/ | ||
#define CFE_MISSION_REV 0xFF | ||
#define CFE_MISSION_REV 0 | ||
This comment has been minimized.
Sorry, something went wrong. |
||
|
||
#define CFE_STR_HELPER(x) #x /**< @brief Convert argument to string */ | ||
#define CFE_STR(x) CFE_STR_HELPER(x) /**< @brief Expand macro before conversion */ | ||
|
I strongly recommend against changing this via an unreviewed mechanism... especially < two weeks before a code drop.