mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 10:40:42 +00:00
Add 401X150 to the list of tested machines.
Also update F0V6 warnings based on new test data.
This commit is contained in:
parent
06321e2b4e
commit
704d6d7c9e
@ -19,6 +19,7 @@
|
|||||||
<ul>
|
<ul>
|
||||||
<li>REMstar Plus (System One 60 Series) (261P) <i>provides only limited information</i></li>
|
<li>REMstar Plus (System One 60 Series) (261P) <i>provides only limited information</i></li>
|
||||||
<li>REMstar Pro (System One 60 Series) (460PBT)</li>
|
<li>REMstar Pro (System One 60 Series) (460PBT)</li>
|
||||||
|
<li>DreamStation CPAP Pro with Auto-Trial (401X150)</li>
|
||||||
</ul>
|
</ul>
|
||||||
</li>
|
</li>
|
||||||
<li>[new] Add support for new settings codes in recently manufactured 700X110 DreamStations.</li>
|
<li>[new] Add support for new settings codes in recently manufactured 700X110 DreamStations.</li>
|
||||||
|
@ -112,6 +112,7 @@ static const PRS1TestedModel s_PRS1TestedModels[] = {
|
|||||||
{ "400X120", 0, 6, "DreamStation CPAP Pro" },
|
{ "400X120", 0, 6, "DreamStation CPAP Pro" },
|
||||||
{ "400X130", 0, 6, "DreamStation CPAP Pro" },
|
{ "400X130", 0, 6, "DreamStation CPAP Pro" },
|
||||||
{ "400X150", 0, 6, "DreamStation CPAP Pro" },
|
{ "400X150", 0, 6, "DreamStation CPAP Pro" },
|
||||||
|
{ "401X150", 0, 6, "DreamStation CPAP Pro with Auto-Trial" },
|
||||||
{ "500X110", 0, 6, "DreamStation Auto CPAP" },
|
{ "500X110", 0, 6, "DreamStation Auto CPAP" },
|
||||||
{ "500X120", 0, 6, "DreamStation Auto CPAP" },
|
{ "500X120", 0, 6, "DreamStation Auto CPAP" },
|
||||||
{ "500X130", 0, 6, "DreamStation Auto CPAP" },
|
{ "500X130", 0, 6, "DreamStation Auto CPAP" },
|
||||||
|
@ -1870,8 +1870,8 @@ bool PRS1DataChunk::ParseSettingsF0V6(const unsigned char* data, int size)
|
|||||||
// but curiously report the use of C-Flex+, even though Auto-CPAP uses A-Flex.
|
// but curiously report the use of C-Flex+, even though Auto-CPAP uses A-Flex.
|
||||||
CHECK_VALUE(len, 3);
|
CHECK_VALUE(len, 3);
|
||||||
CHECK_VALUES(cpapmode, PRS1_MODE_CPAP, PRS1_MODE_CPAPCHECK);
|
CHECK_VALUES(cpapmode, PRS1_MODE_CPAP, PRS1_MODE_CPAPCHECK);
|
||||||
if (data[pos] != 30 && data[pos] != 9) {
|
if (data[pos] < 5 || data[pos] > 30) { // We've seen 5, 9, 14, 25, and 30
|
||||||
CHECK_VALUES(data[pos], 5, 25); // Auto-Trial Duration
|
UNEXPECTED_VALUE(data[pos], "5-30"); // Auto-Trial Duration
|
||||||
}
|
}
|
||||||
this->AddEvent(new PRS1ParsedSettingEvent(PRS1_SETTING_AUTO_TRIAL, data[pos]));
|
this->AddEvent(new PRS1ParsedSettingEvent(PRS1_SETTING_AUTO_TRIAL, data[pos]));
|
||||||
// If we want C-Flex+ to be reported as A-Flex, we can set cpapmode = PRS1_MODE_AUTOTRIAL here.
|
// If we want C-Flex+ to be reported as A-Flex, we can set cpapmode = PRS1_MODE_AUTOTRIAL here.
|
||||||
|
Loading…
Reference in New Issue
Block a user