Skip to content

Commit

Permalink
fix nasa#1537, replacing hardcoded message limit in TIME services wit…
Browse files Browse the repository at this point in the history
…h CFE_PLATFORM_SB_DEFAULT_MSG_LIMIT
  • Loading branch information
zachar1a committed Oct 20, 2021
1 parent 9d4fcae commit da9383e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions modules/time/fsw/src/cfe_time_task.c
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,7 @@ int32 CFE_TIME_TaskInit(void)
#endif

#if (CFE_PLATFORM_TIME_CFG_SERVER == true)
Status = CFE_SB_SubscribeLocal(CFE_SB_ValueToMsgId(CFE_TIME_TONE_CMD_MID), CFE_TIME_Global.CmdPipe, 4);
Status = CFE_SB_SubscribeLocal(CFE_SB_ValueToMsgId(CFE_TIME_TONE_CMD_MID), CFE_TIME_Global.CmdPipe, CFE_PLATFORM_SB_DEFAULT_MSG_LIMIT);
#endif
if (Status != CFE_SUCCESS)
{
Expand All @@ -215,7 +215,7 @@ int32 CFE_TIME_TaskInit(void)
#endif

#if (CFE_PLATFORM_TIME_CFG_SERVER == true)
Status = CFE_SB_SubscribeLocal(CFE_SB_ValueToMsgId(CFE_TIME_DATA_CMD_MID), CFE_TIME_Global.CmdPipe, 4);
Status = CFE_SB_SubscribeLocal(CFE_SB_ValueToMsgId(CFE_TIME_DATA_CMD_MID), CFE_TIME_Global.CmdPipe, CFE_PLATFORM_SB_DEFAULT_MSG_LIMIT);
#endif
if (Status != CFE_SUCCESS)
{
Expand All @@ -231,7 +231,7 @@ int32 CFE_TIME_TaskInit(void)
#endif

#if (CFE_PLATFORM_TIME_CFG_SERVER == true)
Status = CFE_SB_SubscribeLocal(CFE_SB_ValueToMsgId(CFE_TIME_1HZ_CMD_MID), CFE_TIME_Global.CmdPipe, 4);
Status = CFE_SB_SubscribeLocal(CFE_SB_ValueToMsgId(CFE_TIME_1HZ_CMD_MID), CFE_TIME_Global.CmdPipe, CFE_PLATFORM_SB_DEFAULT_MSG_LIMIT);
#endif

if (Status != CFE_SUCCESS)
Expand Down

0 comments on commit da9383e

Please sign in to comment.