From 51333ff8e95bec8c55f1285191f91abf9554b241 Mon Sep 17 00:00:00 2001 From: Mark Watkins Date: Sun, 11 Dec 2011 03:07:05 +1000 Subject: [PATCH] Use a static baseline for SpO2 calcs --- SleepLib/calcs.cpp | 52 +++++++++++++++++++++++++++++----------------- 1 file changed, 33 insertions(+), 19 deletions(-) diff --git a/SleepLib/calcs.cpp b/SleepLib/calcs.cpp index bab78e72..c07b86de 100644 --- a/SleepLib/calcs.cpp +++ b/SleepLib/calcs.cpp @@ -4,6 +4,7 @@ License: GPL */ +#include #include "calcs.h" #include "profiles.h" @@ -509,19 +510,38 @@ int calcSPO2Drop(Session *session) int li=0; // Fix me.. Time scale varies. - const unsigned ringsize=10; + const unsigned ringsize=30; EventDataType ring[ringsize]={0}; qint64 rtime[ringsize]={0}; int rp=0; int min; int cnt=0; + tmp=0; + + // Calculate baseline from first 15 minutes of data, hopefully meaning they are still awake.. + qint64 start=0; for (int e=0;e start+900000) break;// 15 minutes + tmp+=val; + cnt++; + } + } + EventDataType baseline=round(tmp/EventDataType(cnt)); + EventDataType current; + qDebug() << "Calculated baseline" << baseline; + + for (int e=0;e time-window) { + if (rtime[j] > time-300000) { // only look at recent entries.. tmp+=ring[j]; cnt++; } } if (!cnt) { unsigned j=abs((rp-1) % ringsize); - tmp=ring[j]; - } else tmp/=EventDataType(cnt); + tmp=(ring[j]+val)/2; + } else tmp/=EventDataType(cnt); */ - val=tmp; + val=baseline; lastt=0; lv=val; min=val; - for (unsigned j=i+1;j time+window) break; val2=el.data(j); - if (val2 baseline-change) break; + lastt=time2; + li=j+1; } if (lastt>0) { qint64 len=(lastt-time); if (len>=window) { pc->AddEvent(lastt,len/1000,val-min); - i=li; } }