Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Resolve #531, Add baseline and build number #536

Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
57 changes: 50 additions & 7 deletions src/os/inc/osapi-version.h
Original file line number Diff line number Diff line change
Expand Up @@ -23,19 +23,62 @@
*
* Purpose:
* The OSAL version numbers
* See cfe documentation for version and build number descriptions
*/

#ifndef _osapi_version_h_
#define _osapi_version_h_

#define OS_MAJOR_VERSION 5 /**< @brief Major version number */
#define OS_MINOR_VERSION 0 /**< @brief Minor version number */
#define OS_REVISION 21 /**< @brief Revision number */
#define OS_MISSION_REV 0 /**< @brief Mission revision */
/* Development Build Macro Definitions */
#define OS_BUILD_NUMBER 242
#define OS_BUILD_BASELINE "v5.0.0+dev"

/**
* Combine the revision components into a single value that application code can check against
* e.g. "#if OSAL_API_VERSION >= 40100" would check if some feature added in OSAL 4.1 is present.
/* Version Macro Definitions
* ONLY APPLY for OFFICIAL release builds
*/
#define OS_MAJOR_VERSION 5 /**< @brief Major version number */
#define OS_MINOR_VERSION 0 /**< @brief Minor version number */
#define OS_REVISION 0 /**< @brief Revision number */
#define OS_MISSION_REV 0 /**< @brief Mission revision */

/* Helper functions to concatenate integer macro definitions into a string */
#define OS_STR_HELPER(x) #x
#define OS_STR(x) OS_STR_HELPER(x)

/* Development Build format for OS_VERSION */
/* Baseline git tag + Number of commits since baseline */
#define OS_VERSION OS_BUILD_BASELINE OS_STR(OS_BUILD_NUMBER)

/* Development Build format for OS_VERSION_STRING */
#define OS_VERSION_STRING \
" OSAL Development Build\n" \
" " OS_VERSION " (Codename: Bootes)\n" /* Codename for current development */ \
" Latest Official Version: osal v5.0.0" /* For full support please use official release version */

/* Use the following templates for Official Releases ONLY */

/* Official Release format for OS_VERSION */
/*
#define OS_VERSION "v" \
OS_STR(OS_MAJOR_VERSION) "." \
OS_STR(OS_MINOR_VERSION) "." \
OS_STR(OS_REVISION) "." \
OS_STR(OS_MISSION_REV)
*/

/* Official Release OS_VERSION_STRING Format */
/*
#define OS_VERSION_STRING " OSAL " OS_VERSION
*/

/* END TEMPLATES */


/*
* Combine the revision components into a single value that application code can
check against
* e.g. "#if OSAL_API_VERSION >= 40100" would check if some feature added in
OSAL 4.1 is present.
*/
#define OSAL_API_VERSION ((OS_MAJOR_VERSION * 10000) + (OS_MINOR_VERSION * 100) + OS_REVISION)

Expand Down