You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the ADAndor3 driver I see this line to set the NDArray timestamp:
pImage->timeStamp = 631152000 + imageStamp.secPastEpoch +
(imageStamp.nsec / 1.0e9);
but in the ADAndor driver I see:
pArray->timeStamp = startTime.secPastEpoch + startTime.nsec / 1.e9;
Can we make both the drivers consistent? Most drivers seem to use EPICS time rather than POSIX time.
The text was updated successfully, but these errors were encountered:
Hi,
In the ADAndor3 driver I see this line to set the NDArray timestamp:
pImage->timeStamp = 631152000 + imageStamp.secPastEpoch +
(imageStamp.nsec / 1.0e9);
but in the ADAndor driver I see:
pArray->timeStamp = startTime.secPastEpoch + startTime.nsec / 1.e9;
Can we make both the drivers consistent? Most drivers seem to use EPICS time rather than POSIX time.
The text was updated successfully, but these errors were encountered: