Skip to content

Commit

Permalink
Close #49, Add build number and baseline
Browse files Browse the repository at this point in the history
Reset version numbers to last release. Added build number and baseline
macros.
Added and using version string instead of number macros in reporting.
  • Loading branch information
Gerardo E. Cruz-Ortiz committed Aug 5, 2020
1 parent 8c38d8b commit 22955d6
Show file tree
Hide file tree
Showing 2 changed files with 39 additions and 16 deletions.
3 changes: 1 addition & 2 deletions fsw/src/to_lab_app.c
Original file line number Diff line number Diff line change
Expand Up @@ -250,8 +250,7 @@ int32 TO_LAB_init(void)
OS_TaskInstallDeleteHandler(&TO_delete_callback);

CFE_EVS_SendEvent(TO_INIT_INF_EID, CFE_EVS_EventType_INFORMATION,
"TO Lab Initialized. Version %d.%d.%d.%d Awaiting enable command.", TO_LAB_MAJOR_VERSION,
TO_LAB_MINOR_VERSION, TO_LAB_REVISION, TO_LAB_MISSION_REV);
"TO Lab Initialized.\n%s\n Awaiting enable command.", TO_LAB_VERSION_STRING);

return CFE_SUCCESS;
} /* End of TO_LAB_init() */
Expand Down
52 changes: 38 additions & 14 deletions fsw/src/to_lab_version.h
Original file line number Diff line number Diff line change
Expand Up @@ -18,23 +18,47 @@
** See the License for the specific language governing permissions and
** limitations under the License.
**
** File: to_lab_version.h
**
** Purpose:
** The TO Lab Application header file containing version number
**
** Notes:
**
*************************************************************************/
#ifndef _to_lab_version_h_
#define _to_lab_version_h_
#ifndef TO_LAB_VERSION_H
#define TO_LAB_VERSION_H

/*! @file to_lab_version.h
* @brief Purpose:
*
* The TO Lab Application header file containing version information
*
*/

/* Development Build Macro Definitions */
#define TO_LAB_BUILD_NUMBER 43 /*!< Development Build: Number of commits since baseline */
#define TO_LAB_BUILD_BASELINE "v2.3.0" /*!< Development Build: git tag that is the base for the current development */

/* Version Macro Definitions */

#define TO_LAB_MAJOR_VERSION 2 /*!< @brief ONLY APPLY for OFFICIAL releases. Major version number. */
#define TO_LAB_MINOR_VERSION 3 /*!< @brief ONLY APPLY for OFFICIAL releases. Minor version number. */
#define TO_LAB_REVISION 0 /*!< @brief ONLY APPLY for OFFICIAL releases. Revision version number. */
#define TO_LAB_MISSION_REV 0 /*!< @brief ONLY USED by MISSION Implementations. Mission revision */

#define TO_LAB_STR_HELPER(x) #x /*!< @brief Helper function to concatenate strings from integer macros */
#define TO_LAB_STR(x) TO_LAB_STR_HELPER(x) /*!< @brief Helper function to concatenate strings from integer macros */

/*! @brief Development Build Version Number.
* @details Baseline git tag + Number of commits since baseline. @n
* See @ref cfsversions for format differences between development and release versions.
*/
#define TO_LAB_VERSION TO_LAB_BUILD_BASELINE "+dev" TO_LAB_STR(TO_LAB_BUILD_NUMBER)

#define TO_LAB_MAJOR_VERSION 2
#define TO_LAB_MINOR_VERSION 3
#define TO_LAB_REVISION 7
#define TO_LAB_MISSION_REV 0
/*! @brief Development Build Version String.
* @details Reports the current development build's baseline, number, and name. Also includes a note about the latest official version. @n
* See @ref cfsversions for format differences between development and release versions.
*/
#define TO_LAB_VERSION_STRING \
" TO Lab Development Build\n " \
TO_LAB_VERSION \
"\n Last Offical Release: TO Lab v2.3.0" /* For full support please use this version */

#endif /* _to_lab_version_h_ */
#endif /* TO_LAB_VERSION_H */

/************************/
/* End of File Comment */
Expand Down

0 comments on commit 22955d6

Please sign in to comment.