From a4d06c095f8ba45f5132d4c16f0cbad974190b23 Mon Sep 17 00:00:00 2001 From: "Gerardo E. Cruz-Ortiz" Date: Wed, 5 Aug 2020 14:21:46 -0400 Subject: [PATCH] Increase version to v2.3.0+dev44 and update README Set "development build" part of version string to ALL CAPS for readability --- README.md | 7 +++++++ fsw/src/to_lab_version.h | 4 ++-- 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 53ed3cc..1b57a90 100644 --- a/README.md +++ b/README.md @@ -10,6 +10,13 @@ To send telemtry to the "ground" or UDP/IP port, edit the subscription table in ## Version History +### Development Build: 2.3.0+dev45 + +- Fixes bug where an unset address values caused subscriptions to MsgId 0 over 200 times. Added a `TO_UNUSED` entry at the end of the subscription list and a break in the subscription loop when `TO_UNUSED` found. No more subscriptions on the unused table slots (no MsgId 0 subscriptions). +- Corrects return value of `TO_LAB_init()` to be `int32` instead of `int`. Declaration now matches definition, and app builds without errors. +- Add build number and baseline to version reporting. +- See + ### Development Build: 2.3.7 - Makes the `TO_LAB_Subs` table into a CFE_TBL-managed table. diff --git a/fsw/src/to_lab_version.h b/fsw/src/to_lab_version.h index 1ba322e..0831802 100644 --- a/fsw/src/to_lab_version.h +++ b/fsw/src/to_lab_version.h @@ -30,7 +30,7 @@ */ /* Development Build Macro Definitions */ -#define TO_LAB_BUILD_NUMBER 43 /*!< Development Build: Number of commits since baseline */ +#define TO_LAB_BUILD_NUMBER 44 /*!< 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 */ @@ -54,7 +54,7 @@ * See @ref cfsversions for format differences between development and release versions. */ #define TO_LAB_VERSION_STRING \ - " TO Lab Development Build " \ + " TO Lab DEVELOPMENT BUILD " \ TO_LAB_VERSION \ ", Last Official Release: v2.3.0" /* For full support please use this version */