Skip to content

Commit 3d7cb42

Browse files
committed
Comment flush extra debug messages
1 parent 8bc0f5d commit 3d7cb42

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

Source/Processors/DataThreads/rhythm-api/rhd2000evalboard.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1389,14 +1389,14 @@ void Rhd2000EvalBoard::flush()
13891389
{
13901390
dev->SetWireInValue(WireInResetRun, 1 << 16, 1 << 16); //Override pipeout block throttle
13911391
dev->UpdateWireIns();
1392-
cout << "Pre-Flush: " << numWordsInFifo() << endl;
1392+
//cout << "Pre-Flush: " << numWordsInFifo() << endl;
13931393
while (numWordsInFifo() >= USB_BUFFER_SIZE / 2) {
13941394
dev->ReadFromBlockPipeOut(PipeOutData, USB3_BLOCK_SIZE, USB_BUFFER_SIZE, usbBuffer);
1395-
cout << "Flush phase A: " << numWordsInFifo() << endl;
1395+
// cout << "Flush phase A: " << numWordsInFifo() << endl;
13961396
}
13971397
while (numWordsInFifo() > 0) {
13981398
dev->ReadFromBlockPipeOut(PipeOutData, USB3_BLOCK_SIZE, USB3_BLOCK_SIZE *max(2 * numWordsInFifo() / USB3_BLOCK_SIZE, (unsigned int)1), usbBuffer);
1399-
cout << "Flush phase B: " << numWordsInFifo() << endl;
1399+
// cout << "Flush phase B: " << numWordsInFifo() << endl;
14001400
printFIFOmetrics();
14011401
}
14021402
dev->SetWireInValue(WireInResetRun, 0, 1 << 16);

0 commit comments

Comments
 (0)