Skip to content
Snippets Groups Projects
Commit fafa8b29 authored by Aaron Cuevas Lopez's avatar Aaron Cuevas Lopez
Browse files

mend

parent 519407e2
No related branches found
No related tags found
No related merge requests found
......@@ -1413,17 +1413,19 @@ bool Rhd2000EvalBoard::readDataBlock(Rhd2000DataBlock *dataBlock, int nSamples)
if (usb3)
{
std::cout << "usb3 read : " << numBytesToRead << " in " << USB3_BLOCK_SIZE << " blocks" << std::endl;
res = dev->ReadFromBlockPipeOut(PipeOutData, USB3_BLOCK_SIZE, numBytesToRead, usbBuffer);
}
else
{
std::cout << "usb2 read: " << numBytesToRead << std::endl;
res = dev->ReadFromPipeOut(PipeOutData, numBytesToRead, usbBuffer);
}
if (res == ok_Timeout)
{
cerr << "CRITICAL: Timeout on pipe read. Check block and buffer sizes." << endl;
}
std::cout << "read result: " << res << std::endl;
dataBlock->fillFromUsbBuffer(usbBuffer, 0, numDataStreams, nSamples);
return true;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment