From 9d53b246b547b12d0abd59a43eae937d447c3f18 Mon Sep 17 00:00:00 2001 From: Joseph Hickey Date: Tue, 23 Mar 2021 11:01:16 -0400 Subject: [PATCH 1/2] Fix #95, remove app registration It is not necessary for applications to register themselves, this is all done automatically. --- fsw/src/to_lab_app.c | 1 - 1 file changed, 1 deletion(-) diff --git a/fsw/src/to_lab_app.c b/fsw/src/to_lab_app.c index 0573374..c7a8e43 100644 --- a/fsw/src/to_lab_app.c +++ b/fsw/src/to_lab_app.c @@ -151,7 +151,6 @@ int32 TO_LAB_init(void) char ToTlmPipeName[16]; uint16 ToTlmPipeDepth; - CFE_ES_RegisterApp(); TO_LAB_Global.downlink_on = false; PipeDepth = TO_LAB_CMD_PIPE_DEPTH; strcpy(PipeName, "TO_LAB_CMD_PIPE"); From 08401a4ea6490cb68bdf17e3e694e0d7279cf7c8 Mon Sep 17 00:00:00 2001 From: "Gerardo E. Cruz-Ortiz" <59618057+astrogeco@users.noreply.github.com> Date: Thu, 1 Apr 2021 18:57:00 -0400 Subject: [PATCH 2/2] IC:2021-03-30, Bump to v2.4.0-rc1+dev47 --- README.md | 5 +++++ fsw/src/to_lab_version.h | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 18b4a73..f7b47d4 100644 --- a/README.md +++ b/README.md @@ -13,6 +13,11 @@ To send telemtry to the "ground" or UDP/IP port, edit the subscription table in ## Version History +### Development Build: v2.4.0-rc1+dev47 + +- Removes app registration call, `CFE_ES_RegisterApp()` since applications do not need to register themselves. +- See + ### Development Build: v2.4.0-rc1+dev41 - Use `cfe.h` header file diff --git a/fsw/src/to_lab_version.h b/fsw/src/to_lab_version.h index a1a2c08..be6cc5a 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 41 /*!< Development Build: Number of commits since baseline */ +#define TO_LAB_BUILD_NUMBER 47 /*!< Development Build: Number of commits since baseline */ #define TO_LAB_BUILD_BASELINE \ "v2.4.0-rc1" /*!< Development Build: git tag that is the base for the current development */