From 3808943f652f8d072f5cd582fb28ef3ab7547f76 Mon Sep 17 00:00:00 2001 From: Guy Scharf Date: Wed, 18 Aug 2021 22:30:43 -0700 Subject: [PATCH] calcs.cpp: Remove debug statements no longer needed --- oscar/SleepLib/calcs.cpp | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/oscar/SleepLib/calcs.cpp b/oscar/SleepLib/calcs.cpp index bf4a08cc..8412cc9f 100644 --- a/oscar/SleepLib/calcs.cpp +++ b/oscar/SleepLib/calcs.cpp @@ -613,9 +613,11 @@ void FlowParser::calc(bool calcResp, bool calcTv, bool calcTi, bool calcTe, bool tv = 300; // If unreasonable, just set to a "reasonable" number. tvlast = tvlast2 = tvlast3 = tv; } - if (tv_count < 4) { - qDebug() << "tv" << tv << tvlast << tvlast2 << tvlast3 << "avg" << (tvlast + tvlast2 + tvlast3 + tv*2)/5; - } + +// if (tv_count < 4) { +// qDebug() << "tv" << tv << tvlast << tvlast2 << tvlast3 << "avg" << (tvlast + tvlast2 + tvlast3 + tv*2)/5; +// } + tv = (tvlast + tvlast2 + tvlast3 + tv*2)/5; tvlast3 = tvlast2; tvlast2 = tvlast;