From 0344257b7f1e46f0bad000653a234faeed06d807 Mon Sep 17 00:00:00 2001 From: Mark Watkins Date: Fri, 6 Sep 2013 22:59:07 +1000 Subject: [PATCH] Switch of excess serial debugging --- oximetry.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/oximetry.cpp b/oximetry.cpp index a3d60e3b..401c1739 100644 --- a/oximetry.cpp +++ b/oximetry.cpp @@ -22,7 +22,7 @@ #include "Graphs/gYAxis.h" #include "Graphs/gLineOverlay.h" -#define SERIAL_DEBUG 1 +// #define SERIAL_DEBUG 1 extern QLabel * qstatus2; @@ -729,8 +729,9 @@ void CMS50Serial::ReadyRead() pulse=(unsigned char)buffer.at(i+1) & 0x7f; spo2=(unsigned char)buffer.at(i+2) & 0x7f; +#if SERIAL_DEBUG qDebug() << "Record: " << pulse << spo2; - +#endif data.push_back(buffer.at(i)); data.push_back(buffer.at(i+1)); data.push_back(buffer.at(i+2));