Skip to content

Commit cd87fc4

Browse files
authored
Merge pull request #319 from open-ephys/issue-309
Add one second to Harp time
2 parents de7bb7e + 6e7a62b commit cd87fc4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

OpenEphys.Onix1/HarpSyncInputDataFrame.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ public unsafe HarpSyncInputDataFrame(oni.Frame frame)
1818
{
1919
var payload = (HarpSyncInputPayload*)frame.Data.ToPointer();
2020
HubClock = payload->HubClock;
21-
HarpTime = payload->HarpTime;
21+
HarpTime = payload->HarpTime + 1;
2222
}
2323

2424
/// <summary>

0 commit comments

Comments
 (0)