From 959cc3ef922d2c7ffaf4b7ef7e580d68fb17bca9 Mon Sep 17 00:00:00 2001 From: sawinglogz <3787776-sawinglogz@users.noreply.gitlab.com> Date: Wed, 13 Nov 2019 11:39:02 -0500 Subject: [PATCH] Add 1030X150 to list of tested PRS1 machines. The only change in data observed so far is a wider range of rise time. --- oscar/SleepLib/loader_plugins/prs1_loader.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/oscar/SleepLib/loader_plugins/prs1_loader.cpp b/oscar/SleepLib/loader_plugins/prs1_loader.cpp index 4ce619b2..5353de52 100644 --- a/oscar/SleepLib/loader_plugins/prs1_loader.cpp +++ b/oscar/SleepLib/loader_plugins/prs1_loader.cpp @@ -258,6 +258,7 @@ static const PRS1TestedModel s_PRS1TestedModels[] = { { "1061T", 3, 3, "BiPAP S/T 30 (System One 60 Series)" }, { "1160P", 3, 3, "BiPAP AVAPS 30 (System One 60 Series)" }, { "1030X110", 3, 6, "DreamStation BiPAP S/T 30" }, + { "1030X150", 3, 6, "DreamStation BiPAP S/T 30 with AAM" }, { "1130X110", 3, 6, "DreamStation BiPAP AVAPS 30" }, { "1131X150", 3, 6, "DreamStation BiPAP AVAPS 30 AE" }, @@ -5257,7 +5258,7 @@ bool PRS1DataChunk::ParseSettingsF3V6(const unsigned char* data, int size) this->AddEvent(new PRS1ParsedSettingEvent(PRS1_SETTING_FLEX_LEVEL, data[pos])); } else if (flexmode == FLEX_None || flexmode == FLEX_AVAPS) { // Rise time - if (data[pos] < 1 || data[pos] > 4) UNEXPECTED_VALUE(data[pos], "1-4"); // 1-4 have been seen + if (data[pos] < 1 || data[pos] > 6) UNEXPECTED_VALUE(data[pos], "1-6"); // 1-6 have been seen this->AddEvent(new PRS1ParsedSettingEvent(PRS1_SETTING_RISE_TIME, data[pos])); } // TODO: where's timed inspiration? @@ -7239,7 +7240,7 @@ bool PRS1Import::ParseSession(void) } } } - + // TODO: There should be a way to distinguish between no-data-to-import vs. parsing errors // (once we figure out what's benign and what isn't). if (m_event_chunks.count() > 0) {