Skip to content

Commit

Permalink
feat: Expanded timestamp error with the EVR model.
Browse files Browse the repository at this point in the history
  • Loading branch information
jerzyjamroz committed Apr 2, 2024
1 parent 46c7055 commit 55001f1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions evrMrmApp/src/drvem.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -867,8 +867,8 @@ EVRMRM::convertTS(epicsTimeStamp* ts)
*/
if(ts->secPastEpoch > lastValidTimestamp+1)
{
errlogPrintf("EVR ignoring invalid TS %08x %08x (expect %08x)\n",
ts->secPastEpoch, ts->nsec, lastValidTimestamp);
errlogPrintf("EVR %s ignoring invalid TS %08x %08x (expect %08x)\n",
model().c_str(), ts->secPastEpoch, ts->nsec, lastValidTimestamp);
timestampValid=0;
scanIoRequest(timestampValidChange);
return false;
Expand Down

0 comments on commit 55001f1

Please sign in to comment.