From f6a62024a551ffb7498d67ce6279001e67da51f1 Mon Sep 17 00:00:00 2001
From: jsiegle <jsiegle@mit.edu>
Date: Tue, 21 May 2013 19:55:03 -0400
Subject: [PATCH] Fix incorrect bitvolts value in RHD2000Thread

---
 Source/Processors/DataThreads/RHD2000Thread.cpp | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/Source/Processors/DataThreads/RHD2000Thread.cpp b/Source/Processors/DataThreads/RHD2000Thread.cpp
index 76c9b5e9c..58996fd34 100644
--- a/Source/Processors/DataThreads/RHD2000Thread.cpp
+++ b/Source/Processors/DataThreads/RHD2000Thread.cpp
@@ -412,8 +412,8 @@ float RHD2000Thread::getSampleRate()
 
 float RHD2000Thread::getBitVolts()
 {
-    //return 0.1907;
-	return 0.000064; // empirical value determined by calibrating against reid's code - fix this
+
+	return 0.195f;//0.000064; // empirical value determined by calibrating against reid's code - fix this
 }
 
 double RHD2000Thread::setUpperBandwidth(double desiredUpperBandwidth)
-- 
GitLab