diff --git a/Htmldocs/release_notes.html b/Htmldocs/release_notes.html
index c366eed3..bdb26588 100644
--- a/Htmldocs/release_notes.html
+++ b/Htmldocs/release_notes.html
@@ -11,6 +11,17 @@
This page in other languages:
http://www.apneaboard.com/wiki/index.php/OSCAR_Release_Notes
+ Changes and fixes in OSCAR v1.4.0-beta-2
+
Portions of OSCAR are © 2019-2022 by
+ The OSCAR Team
Changes and fixes in OSCAR v1.4.0-beta-1
Portions of OSCAR are © 2019-2022 by
The OSCAR Team
Changes and fixes in OSCAR v1.3.1 diff --git a/oscar/SleepLib/loader_plugins/prs1_loader.cpp b/oscar/SleepLib/loader_plugins/prs1_loader.cpp index 97dfefb0..59a7d59d 100644 --- a/oscar/SleepLib/loader_plugins/prs1_loader.cpp +++ b/oscar/SleepLib/loader_plugins/prs1_loader.cpp @@ -134,6 +134,7 @@ static const PRS1TestedModel s_PRS1TestedModels[] = { { "700X150", 0, 6, "DreamStation Auto BiPAP" }, { "410X150C", 0, 6, "DreamStation 2 CPAP" }, + { "420X150C", 0, 6, "DreamStation 2 Advanced CPAP" }, // from FDA filing { "520X110C", 0, 6, "DreamStation 2 Auto CPAP Advanced" }, // based on bottom label, boot screen says "Advanced Auto CPAP" { "520X130C", 0, 6, "DreamStation 2 Auto CPAP Advanced" }, // from user report { "520X150C", 0, 6, "DreamStation 2 Auto CPAP Advanced" }, // from user report diff --git a/oscar/SleepLib/loader_plugins/prs1_parser_xpap.cpp b/oscar/SleepLib/loader_plugins/prs1_parser_xpap.cpp index 5e823db5..76a52012 100644 --- a/oscar/SleepLib/loader_plugins/prs1_parser_xpap.cpp +++ b/oscar/SleepLib/loader_plugins/prs1_parser_xpap.cpp @@ -2078,7 +2078,7 @@ bool PRS1DataChunk::ParseSettingsF0V6(const unsigned char* data, int size) // TODO: Confirm that 4 is 12HT and update ParseTubingTypeV3. this->ParseTubingTypeV3(data[pos]); break; - case 0x48: // ??? Seen on DreamStation 2 non-Advanced (410) + case 0x48: // ??? Seen on DreamStation 2 non-Advanced (410) but not either Advanced (420 or 520) // Appears between 0x2C (ramp time) and 0x2E (flex mode), with a value of 0-4. CHECK_VALUE(len, 1); if (data[pos] > 4) {