Skip to content

Commit

Permalink
Fix #123, apply name changes to EDS dispatcher
Browse files Browse the repository at this point in the history
Renames symbols to match recent EdsLib change
  • Loading branch information
jphickey committed Mar 7, 2024
1 parent 728f432 commit 26063de
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions fsw/src/hs_eds_dispatch.c
Original file line number Diff line number Diff line change
Expand Up @@ -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 =
{
Expand Down Expand Up @@ -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)
{
Expand Down

0 comments on commit 26063de

Please sign in to comment.