Skip to content

Commit fc9550a

Browse files
committed
Merge IC:Caelum-rc4+dev11, to_lab v2.5.0-rc4+dev21
- Remove registration of empty EVS filters - Update codeql workflow for reusable updates - See <nasa/cFS#505>
2 parents 21d562c + baa9988 commit fc9550a

File tree

1 file changed

+2
-11
lines changed

1 file changed

+2
-11
lines changed

fsw/src/to_lab_app.c

+2-11
Original file line numberDiff line numberDiff line change
@@ -49,14 +49,6 @@ TO_LAB_GlobalData_t TO_LAB_Global;
4949

5050
TO_LAB_Subs_t * TO_LAB_Subs;
5151
CFE_TBL_Handle_t TO_SubTblHandle;
52-
/*
53-
** Event Filter Table
54-
*/
55-
static CFE_EVS_BinFilter_t CFE_TO_EVS_Filters[] = {/* Event ID mask */
56-
{TO_INIT_INF_EID, 0x0000}, {TO_CRCMDPIPE_ERR_EID, 0x0000},
57-
{TO_SUBSCRIBE_ERR_EID, 0x0000}, {TO_TLMOUTSOCKET_ERR_EID, 0x0000},
58-
{TO_TLMOUTSTOP_ERR_EID, 0x0000}, {TO_MSGID_ERR_EID, 0x0000},
59-
{TO_FNCODE_ERR_EID, 0x0000}, {TO_NOOP_INF_EID, 0x0000}};
6052

6153
/*
6254
** Prototypes Section
@@ -152,10 +144,9 @@ int32 TO_LAB_init(void)
152144
strcpy(ToTlmPipeName, "TO_LAB_TLM_PIPE");
153145

154146
/*
155-
** Register event filter table...
147+
** Register with EVS
156148
*/
157-
CFE_EVS_Register(CFE_TO_EVS_Filters, sizeof(CFE_TO_EVS_Filters) / sizeof(CFE_EVS_BinFilter_t),
158-
CFE_EVS_EventFilter_BINARY);
149+
CFE_EVS_Register(NULL, 0, CFE_EVS_EventFilter_BINARY);
159150
/*
160151
** Initialize housekeeping packet (clear user data area)...
161152
*/

0 commit comments

Comments
 (0)