Skip to content

Commit ec7b9f3

Browse files
committed
[bench-dma] TF checks should expect orbit overlaps
1 parent a597663 commit ec7b9f3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/CommandLineUtilities/ProgramDmaBench.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -739,7 +739,7 @@ class ProgramDmaBench : public Program
739739

740740
if (Utilities::getBit(triggerType, 9) == 0x1 || Utilities::getBit(triggerType, 7) == 0x1) { // If SOX, use current orbit as the first one
741741
mNextTFOrbit = (orbit + mTimeFrameLength) % (0x100000000);
742-
} else if (orbit >= mNextTFOrbit) {
742+
} else if (orbit == mNextTFOrbit) {
743743
// next orbit should be previous orbit + time frame length
744744
if (!atStartOfSuperpage) {
745745
// log TF not at the beginning of the superpage error

0 commit comments

Comments
 (0)