File tree Expand file tree Collapse file tree
Source/Processors/DataThreads Expand file tree Collapse file tree Original file line number Diff line number Diff 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);
You can’t perform that action at this time.
0 commit comments