Skip to content
Snippets Groups Projects
Commit 502b8d8b authored by Ruud Overeem's avatar Ruud Overeem
Browse files

Bug 1139:

Code was wrong. Added 1 to the timestamp. Checked with ethereal.
parent ed169da0
No related branches found
No related tags found
No related merge requests found
...@@ -56,7 +56,7 @@ void TimestampWrite::sendrequest() ...@@ -56,7 +56,7 @@ void TimestampWrite::sendrequest()
// RSP uses it on CEP output // RSP uses it on CEP output
// BLP's use it on TBB data output via the backplane // BLP's use it on TBB data output via the backplane
ts.hdr.set(MEPHeader::RSR_TIMESTAMP_HDR, MEPHeader::DST_ALL, MEPHeader::WRITE); ts.hdr.set(MEPHeader::RSR_TIMESTAMP_HDR, MEPHeader::DST_ALL, MEPHeader::WRITE);
ts.timestamp = m_scheduler.getCurrentTime().sec(); ts.timestamp = m_scheduler.getCurrentTime().sec() + 1;
m_hdr = ts.hdr; m_hdr = ts.hdr;
getBoardPort().send(ts); getBoardPort().send(ts);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment