From 26063de6bc09c1500989ea5ab490ef7a507a8d32 Mon Sep 17 00:00:00 2001 From: Joseph Hickey Date: Wed, 6 Mar 2024 19:53:16 -0500 Subject: [PATCH] Fix #123, apply name changes to EDS dispatcher Renames symbols to match recent EdsLib change --- fsw/src/hs_eds_dispatch.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/fsw/src/hs_eds_dispatch.c b/fsw/src/hs_eds_dispatch.c index a4d85cf..e3d673a 100644 --- a/fsw/src/hs_eds_dispatch.c +++ b/fsw/src/hs_eds_dispatch.c @@ -40,7 +40,7 @@ /* * Define a lookup table for SAMPLE app command codes */ -static const HS_Application_Component_Telecommand_DispatchTable_t HS_TC_DISPATCH_TABLE = +static const EdsDispatchTable_HS_Application_CFE_SB_Telecommand_t HS_TC_DISPATCH_TABLE = { .CMD = { @@ -78,8 +78,7 @@ void HS_TaskPipe(const CFE_SB_Buffer_t *SBBufPtr) CFE_MSG_Size_t MsgSize; CFE_MSG_FcnCode_t MsgFc; - Status = HS_Application_Component_Telecommand_Dispatch(CFE_SB_Telecommand_indication_Command_ID, SBBufPtr, - &HS_TC_DISPATCH_TABLE); + Status = EdsDispatch_HS_Application_Telecommand(SBBufPtr, &HS_TC_DISPATCH_TABLE); if (Status != CFE_SUCCESS) {