Skip to content

Commit

Permalink
two
Browse files Browse the repository at this point in the history
  • Loading branch information
thnkslprpt committed Dec 7, 2023
1 parent 93f127d commit 70e368e
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
4 changes: 4 additions & 0 deletions modules/sb/fsw/src/cfe_sb_task.c
Original file line number Diff line number Diff line change
Expand Up @@ -435,6 +435,8 @@ int32 CFE_SB_EnableRouteCmd(const CFE_SB_EnableRouteCmd_t *data)
CFE_EVS_SendEvent(CFE_SB_ENBL_RTE2_EID, CFE_EVS_EventType_DEBUG, "Enabling Route,Msg 0x%x,Pipe %lu",
(unsigned int)CFE_SB_MsgIdToValue(MsgId), CFE_RESOURCEID_TO_ULONG(CmdPtr->Pipe));
break;
default:
break;
}

return CFE_SUCCESS;
Expand Down Expand Up @@ -502,6 +504,8 @@ int32 CFE_SB_DisableRouteCmd(const CFE_SB_DisableRouteCmd_t *data)
CFE_EVS_SendEvent(CFE_SB_DSBL_RTE2_EID, CFE_EVS_EventType_DEBUG, "Route Disabled,Msg 0x%x,Pipe %lu",
(unsigned int)CFE_SB_MsgIdToValue(MsgId), CFE_RESOURCEID_TO_ULONG(CmdPtr->Pipe));
break;
default:
break;
}

return CFE_SUCCESS;
Expand Down
1 change: 1 addition & 0 deletions modules/tbl/fsw/src/cfe_tbl_api.c
Original file line number Diff line number Diff line change
Expand Up @@ -795,6 +795,7 @@ CFE_Status_t CFE_TBL_Load(CFE_TBL_Handle_t TblHandle, CFE_TBL_SrcEnum_t SrcType,
"%s: Attempted to load from illegal source type=%d", AppName, (int)SrcType);

Status = CFE_TBL_ERR_ILLEGAL_SRC_TYPE;
break;
}

/* If the data was successfully loaded, then validate its contents */
Expand Down

0 comments on commit 70e368e

Please sign in to comment.