From 3d7cb42c6297189790e6f62559b48f1b7168eb24 Mon Sep 17 00:00:00 2001 From: Aaron Cuevas Lopez <aacuelo@teleco.upv.es> Date: Thu, 29 Oct 2015 20:55:37 +0100 Subject: [PATCH] Comment flush extra debug messages --- .../Processors/DataThreads/rhythm-api/rhd2000evalboard.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Source/Processors/DataThreads/rhythm-api/rhd2000evalboard.cpp b/Source/Processors/DataThreads/rhythm-api/rhd2000evalboard.cpp index 60de14719..3abe422ac 100755 --- a/Source/Processors/DataThreads/rhythm-api/rhd2000evalboard.cpp +++ b/Source/Processors/DataThreads/rhythm-api/rhd2000evalboard.cpp @@ -1389,14 +1389,14 @@ void Rhd2000EvalBoard::flush() { dev->SetWireInValue(WireInResetRun, 1 << 16, 1 << 16); //Override pipeout block throttle dev->UpdateWireIns(); - cout << "Pre-Flush: " << numWordsInFifo() << endl; + //cout << "Pre-Flush: " << numWordsInFifo() << endl; while (numWordsInFifo() >= USB_BUFFER_SIZE / 2) { dev->ReadFromBlockPipeOut(PipeOutData, USB3_BLOCK_SIZE, USB_BUFFER_SIZE, usbBuffer); - cout << "Flush phase A: " << numWordsInFifo() << endl; + // cout << "Flush phase A: " << numWordsInFifo() << endl; } while (numWordsInFifo() > 0) { dev->ReadFromBlockPipeOut(PipeOutData, USB3_BLOCK_SIZE, USB3_BLOCK_SIZE *max(2 * numWordsInFifo() / USB3_BLOCK_SIZE, (unsigned int)1), usbBuffer); - cout << "Flush phase B: " << numWordsInFifo() << endl; + // cout << "Flush phase B: " << numWordsInFifo() << endl; printFIFOmetrics(); } dev->SetWireInValue(WireInResetRun, 0, 1 << 16); -- GitLab