From 9902f16f6a73b9e950ec0011fc08682a611bf81c Mon Sep 17 00:00:00 2001
From: Jakob Voigts <jvoigts@mit.edu>
Date: Thu, 4 Sep 2014 07:10:12 -0400
Subject: [PATCH] Enabled SPI delay compensation debug output

---
 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 d3eb5b36e..21ad8d47d 100644
--- a/Source/Processors/DataThreads/RHD2000Thread.cpp
+++ b/Source/Processors/DataThreads/RHD2000Thread.cpp
@@ -405,13 +405,13 @@ void RHD2000Thread::scanPorts()
         // Record delay settings that yield good communication with the chip.
         for (stream = 0; stream < MAX_NUM_DATA_STREAMS; ++stream)//MAX_NUM_DATA_STREAMS; ++stream)
         {
-            // std::cout << "Stream number " << stream << ", delay = " << delay << std::endl;
+             std::cout << "Stream number " << stream << ", delay = " << delay << std::endl;
 
             id = deviceId(dataBlock, stream);
 
             if (id > 0) // 1 = RHD2132, 2 = RHD2216
             {
-                //  std::cout << "Device ID found: " << id << std::endl;
+                 std::cout << "Device ID found: " << id << std::endl;
 
                 sumGoodDelays.set(stream,sumGoodDelays[stream] + 1);
 
-- 
GitLab