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

Merge branch 'master' of github.com:open-ephys/GUI

parents 1a554f19 4ce8f259
Branches
Tags
No related merge requests found
......@@ -1513,7 +1513,7 @@ bool RHD2000Thread::updateBuffer()
// ADC waveform units = volts
thisSample[channel] =
//0.000050354 * float(dataBlock->boardAdcData[adcChan][samp]);
0.00015258789 * float(dataBlock->boardAdcData[adcChan][samp]) - 5; // account for +/-5V input range
0.00015258789 * float(dataBlock->boardAdcData[adcChan][samp]) - 5 - 0.4096; // account for +/-5V input range and DC offset
}
}
// std::cout << channel << std::endl;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment