From 136df4e18568bf2c74919c007a71e0c44f038eef Mon Sep 17 00:00:00 2001 From: Jacob Hageman Date: Thu, 12 May 2022 14:40:18 -0600 Subject: [PATCH 1/2] Fix #114, Resolve uninit var static analysis warnings --- fsw/src/sch_lab_app.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fsw/src/sch_lab_app.c b/fsw/src/sch_lab_app.c index 022c4c6..2e83151 100644 --- a/fsw/src/sch_lab_app.c +++ b/fsw/src/sch_lab_app.c @@ -158,7 +158,7 @@ int32 SCH_LAB_AppInit(void) int32 Status; int32 OsStatus; uint32 TimerPeriod; - osal_id_t TimeBaseId; + osal_id_t TimeBaseId = OS_OBJECT_ID_UNDEFINED; SCH_LAB_ScheduleTable_t * ConfigTable; SCH_LAB_ScheduleTableEntry_t *ConfigEntry; SCH_LAB_StateEntry_t * LocalStateEntry; From 139fc2a53175e077a5b3241d63c892b876d55fc1 Mon Sep 17 00:00:00 2001 From: "Gerardo E. Cruz-Ortiz" <59618057+astrogeco@users.noreply.github.com> Date: Tue, 31 May 2022 12:56:39 -0400 Subject: [PATCH 2/2] IC: Caelum-rc4+dev10, sch_lab v2.5.0-rc4+dev29 - Resolve uninit var static analysis warnings - See and --- README.md | 5 +++++ fsw/src/sch_lab_version.h | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index d0a7467..8bab691 100644 --- a/README.md +++ b/README.md @@ -13,6 +13,11 @@ To change the list of packets that sch_lab sends out, edit the schedule table lo ## Version History +### Development Build: v2.5.0-rc4+dev29 + +- Resolve uninit var static analysis warnings +- See and + ### Development Build: v2.5.0-rc4+dev23 - Update Copyright Headers diff --git a/fsw/src/sch_lab_version.h b/fsw/src/sch_lab_version.h index 1eccefc..67a95d7 100644 --- a/fsw/src/sch_lab_version.h +++ b/fsw/src/sch_lab_version.h @@ -25,7 +25,7 @@ */ /* Development Build Macro Definitions */ -#define SCH_LAB_BUILD_NUMBER 23 /*!< Development Build: Number of commits since baseline */ +#define SCH_LAB_BUILD_NUMBER 29 /*!< Development Build: Number of commits since baseline */ #define SCH_LAB_BUILD_BASELINE \ "v2.5.0-rc4" /*!< Development Build: git tag that is the base for the current development */