Skip to content

Commit

Permalink
Merge pull request #2073 from skliper/fix2072-cfg_time_src_true
Browse files Browse the repository at this point in the history
Fix #2072, Resolve build failure for time cfg source
  • Loading branch information
astrogeco committed Mar 24, 2022
2 parents 38f96db + d076781 commit e1d7a05
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions modules/time/fsw/src/cfe_time_tone.c
Original file line number Diff line number Diff line change
Expand Up @@ -281,7 +281,7 @@ int32 CFE_TIME_ToneSendMET(CFE_TIME_SysTime_t NewMET)
/*
** Send "time at the tone" command data packet...
*/
CFE_SB_TransmitMsg(&CFE_TIME_Global.ToneDataCmd.CmdHeader.Msg, false);
CFE_SB_TransmitMsg(&CFE_TIME_Global.ToneDataCmd.CommandHeader.Msg, false);

/*
** Count of "time at the tone" commands sent with external data...
Expand Down Expand Up @@ -423,7 +423,7 @@ int32 CFE_TIME_ToneSendGPS(CFE_TIME_SysTime_t NewTime, int16 NewLeaps)
/*
** Send "time at the tone" command data packet...
*/
CFE_SB_TransmitMsg(&CFE_TIME_Global.ToneDataCmd.CmdHeader.Msg, false);
CFE_SB_TransmitMsg(&CFE_TIME_Global.ToneDataCmd.CommandHeader.Msg, false);

/*
** Count of "time at the tone" commands sent with external data...
Expand Down Expand Up @@ -565,7 +565,7 @@ int32 CFE_TIME_ToneSendTime(CFE_TIME_SysTime_t NewTime)
/*
** Send "time at the tone" command data packet...
*/
CFE_SB_TransmitMsg(&CFE_TIME_Global.ToneDataCmd.CmdHeader.Msg, false);
CFE_SB_TransmitMsg(&CFE_TIME_Global.ToneDataCmd.CommandHeader.Msg, false);

/*
** Count of "time at the tone" commands sent with external data...
Expand Down

0 comments on commit e1d7a05

Please sign in to comment.