Skip to content

Commit 383ab35

Browse files
committed
Some extra debug lines
1 parent 03f4fd2 commit 383ab35

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

Source/Processors/DataThreads/RHD2000Thread.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1403,6 +1403,7 @@ bool RHD2000Thread::startAcquisition()
14031403
}
14041404

14051405
blockSize = dataBlock->calculateDataBlockSizeInWords(evalBoard->getNumEnabledDataStreams(), evalBoard->isUSB3());
1406+
std::cout << "Expecting blocksize of " << blockSize << " for " << evalBoard->getNumEnabledDataStreams() << " streams" << std::endl;
14061407

14071408
startThread();
14081409

@@ -1470,7 +1471,7 @@ bool RHD2000Thread::updateBuffer()
14701471
//cout << "Block size: " << blockSize << endl;
14711472

14721473
bool return_code;
1473-
1474+
//std::cout << "Current number of words: " << evalBoard->numWordsInFifo() << " for " << blockSize << std::endl;
14741475
if (evalBoard->numWordsInFifo() >= blockSize)
14751476
{
14761477
return_code = evalBoard->readDataBlock(dataBlock);

0 commit comments

Comments
 (0)