From 43a3b155b78012896efe2cfed0fe2a3c5e45e1dc Mon Sep 17 00:00:00 2001 From: Phil Olynyk Date: Sat, 11 Sep 2021 21:33:01 -0400 Subject: [PATCH] Ignore new fields fro 28509 (Lumis 150) --- oscar/SleepLib/loader_plugins/resmed_loader.cpp | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/oscar/SleepLib/loader_plugins/resmed_loader.cpp b/oscar/SleepLib/loader_plugins/resmed_loader.cpp index 53f19c88..326021db 100644 --- a/oscar/SleepLib/loader_plugins/resmed_loader.cpp +++ b/oscar/SleepLib/loader_plugins/resmed_loader.cpp @@ -2881,6 +2881,8 @@ bool ResmedLoader::LoadEVE(Session *sess, const QString & path) CA = sess->AddEventList(CPAP_ClearAirway, EVL_Event); if (sess->checkInside(tt)) CA->AddEvent(tt, anno->duration); + } else if (anno->text == "SpO2 Desaturation") { // Used in 28509 + continue; // ignored for now } else { if (anno->text != "Recording starts") { qDebug() << "Unobserved ResMed annotation field: " << anno->text; @@ -3240,6 +3242,12 @@ bool ResmedLoader::LoadPLD(Session *sess, const QString & path) // a = ToTimeDelta(sess,edf,es, code,samples,duration,0,0, square); } else if (es.label == "Va") { // Signal used in 36039... What to do with it??? a = nullptr; // We'll skip it for now + } else if (es.label == "AlvMinVent.2s") { // Signal used in 28509... What to do with it??? + a = nullptr; // We'll skip it for now + } else if (es.label == "CLRatio.2s") { // Signal used in 28509... What to do with it??? + a = nullptr; // We'll skip it for now + } else if (es.label == "TRRatio.2s") { // Signal used in 28509... What to do with it??? + a = nullptr; // We'll skip it for now } else if (es.label == "") { // What the hell resmed?? // these empty lables should be changed in resmed_EDFInfo to something unique if (emptycnt == 0) {