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_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) { 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 */