mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-07 03:30:44 +00:00
Ignore new fields fro 28509 (Lumis 150)
This commit is contained in:
parent
054b633ebe
commit
43a3b155b7
@ -2881,6 +2881,8 @@ bool ResmedLoader::LoadEVE(Session *sess, const QString & path)
|
|||||||
CA = sess->AddEventList(CPAP_ClearAirway, EVL_Event);
|
CA = sess->AddEventList(CPAP_ClearAirway, EVL_Event);
|
||||||
if (sess->checkInside(tt))
|
if (sess->checkInside(tt))
|
||||||
CA->AddEvent(tt, anno->duration);
|
CA->AddEvent(tt, anno->duration);
|
||||||
|
} else if (anno->text == "SpO2 Desaturation") { // Used in 28509
|
||||||
|
continue; // ignored for now
|
||||||
} else {
|
} else {
|
||||||
if (anno->text != "Recording starts") {
|
if (anno->text != "Recording starts") {
|
||||||
qDebug() << "Unobserved ResMed annotation field: " << anno->text;
|
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);
|
// 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???
|
} else if (es.label == "Va") { // Signal used in 36039... What to do with it???
|
||||||
a = nullptr; // We'll skip it for now
|
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??
|
} else if (es.label == "") { // What the hell resmed??
|
||||||
// these empty lables should be changed in resmed_EDFInfo to something unique
|
// these empty lables should be changed in resmed_EDFInfo to something unique
|
||||||
if (emptycnt == 0) {
|
if (emptycnt == 0) {
|
||||||
|
Loading…
Reference in New Issue
Block a user