From f32539392e480a5c667eeebdccb9163b810b29df Mon Sep 17 00:00:00 2001 From: Joseph Hickey Date: Tue, 23 Mar 2021 11:02:05 -0400 Subject: [PATCH 1/2] Fix #74, remove app registration It is not necessary for applications to register themselves, this is all done automatically. --- fsw/src/sch_lab_app.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/fsw/src/sch_lab_app.c b/fsw/src/sch_lab_app.c index ec8f081..9ae5673 100644 --- a/fsw/src/sch_lab_app.c +++ b/fsw/src/sch_lab_app.c @@ -87,8 +87,6 @@ void SCH_Lab_AppMain(void) CFE_ES_PerfLogEntry(SCH_MAIN_TASK_PERF_ID); - CFE_ES_RegisterApp(); - Status = SCH_LAB_AppInit(); if (Status != CFE_SUCCESS) { From 9da4ef3c14fef2c2e22e1280539348ef9baf890a Mon Sep 17 00:00:00 2001 From: "Gerardo E. Cruz-Ortiz" <59618057+astrogeco@users.noreply.github.com> Date: Thu, 1 Apr 2021 19:23:58 -0400 Subject: [PATCH 2/2] IC:2021-03-30, Bump to v2.4.0-rc1+dev32 --- 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 94c30ba..5c6c849 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.4.0-rc1+dev32 + +- Removes app registration call, `CFE_ES_RegisterApp()` since applications do not need to register themselves. +- See + ### Development Build: v2.4.0-rc1+dev26 - Fix #67, Update sequence count in transmitted messages diff --git a/fsw/src/sch_lab_version.h b/fsw/src/sch_lab_version.h index 8811405..c121423 100644 --- a/fsw/src/sch_lab_version.h +++ b/fsw/src/sch_lab_version.h @@ -30,7 +30,7 @@ */ /* Development Build Macro Definitions */ -#define SCH_LAB_BUILD_NUMBER 26 /*!< Development Build: Number of commits since baseline */ +#define SCH_LAB_BUILD_NUMBER 32 /*!< Development Build: Number of commits since baseline */ #define SCH_LAB_BUILD_BASELINE \ "v2.4.0-rc1" /*!< Development Build: git tag that is the base for the current development */