From c13951b67597ce52117846fd4db99a67a903ed5c Mon Sep 17 00:00:00 2001 From: kappa44 <6469032-kappa44@users.noreply.gitlab.com> Date: Mon, 22 Feb 2021 09:20:34 +1100 Subject: [PATCH] Consider CPAP drift when displaying current value --- oscar/SleepLib/day.cpp | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/oscar/SleepLib/day.cpp b/oscar/SleepLib/day.cpp index 691a1716..a752b6cf 100644 --- a/oscar/SleepLib/day.cpp +++ b/oscar/SleepLib/day.cpp @@ -202,11 +202,14 @@ EventDataType Day::countInsideSpan(ChannelID span, ChannelID code) EventDataType Day::lookupValue(ChannelID code, qint64 time, bool square) { + // Remove drift from CPAP graphs so we get the right value... + qint64 clockdrift = qint64(p_profile->cpap->clockDrift()) * 1000L; for (auto & sess : sessions) { if (sess->enabled()) { - if ((time > sess->first()) && (time < sess->last())) { + qint64 drift = (sess->type() == MT_CPAP?clockdrift:0); + if ((time-drift > sess->first()) && (time-drift < sess->last())) { if (sess->channelExists(code)) { - return sess->SearchValue(code,time,square); + return sess->SearchValue(code,time-drift,square); } } }