From 64a080380642233ad60af2cb29b11c240dc30ed0 Mon Sep 17 00:00:00 2001 From: Mark Watkins Date: Sun, 11 Dec 2011 02:15:47 +1000 Subject: [PATCH] Improved SpO2 Drop Detection algorithm --- SleepLib/calcs.cpp | 20 ++++++++++++++++---- 1 file changed, 16 insertions(+), 4 deletions(-) diff --git a/SleepLib/calcs.cpp b/SleepLib/calcs.cpp index 581ce30b..bab78e72 100644 --- a/SleepLib/calcs.cpp +++ b/SleepLib/calcs.cpp @@ -508,31 +508,43 @@ int calcSPO2Drop(Session *session) EventDataType lv=0; int li=0; + // Fix me.. Time scale varies. const unsigned ringsize=10; - EventDataType ring[ringsize]; + EventDataType ring[ringsize]={0}; + qint64 rtime[ringsize]={0}; int rp=0; int min; + int cnt=0; for (int e=0;e time-window) { + tmp+=ring[j]; + cnt++; + } } - tmp/=EventDataType(ringsize); + if (!cnt) { + unsigned j=abs((rp-1) % ringsize); + tmp=ring[j]; + } else tmp/=EventDataType(cnt); val=tmp; - time=el.time(i); lastt=0; lv=val;