From 71f77d1336374f4c49d27701a0c451ca63671715 Mon Sep 17 00:00:00 2001 From: Phil Olynyk Date: Wed, 27 Oct 2021 20:47:20 -0400 Subject: [PATCH] Uncomment the skip of 10 seconds for pressures --- oscar/SleepLib/loader_plugins/resmed_loader.cpp | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/oscar/SleepLib/loader_plugins/resmed_loader.cpp b/oscar/SleepLib/loader_plugins/resmed_loader.cpp index 724e42bd..78ec51a5 100644 --- a/oscar/SleepLib/loader_plugins/resmed_loader.cpp +++ b/oscar/SleepLib/loader_plugins/resmed_loader.cpp @@ -3347,10 +3347,11 @@ void ResmedLoader::ToTimeDelta(Session *sess, ResMedEDFInfo &edf, EDFSignal &es, int startpos = 0; // There's no reason to skip the first 40 seconds of slow data -// if ((code == CPAP_Pressure) || (code == CPAP_IPAP) || (code == CPAP_EPAP)) { -// startpos = 20; // Shave the first 40 seconds of pressure data -// tt += rate * startpos; -// } +// Reduce that to 10 seconds, to allow presssures to stabilise + if ((code == CPAP_Pressure) || (code == CPAP_IPAP) || (code == CPAP_EPAP)) { + startpos = 5; // Shave the first 10 seconds of pressure data + tt += rate * startpos; + } qint16 *sptr = es.dataArray; qint16 *eptr = sptr + samples;