Update DS2 warnings based on new test data.

This commit is contained in:
sawinglogz 2022-05-02 16:24:48 -04:00
parent 1098cab272
commit 2b939a4305

View File

@ -2079,11 +2079,11 @@ bool PRS1DataChunk::ParseSettingsF0V6(const unsigned char* data, int size)
this->ParseTubingTypeV3(data[pos]); this->ParseTubingTypeV3(data[pos]);
break; break;
case 0x48: // ??? Seen on DreamStation 2 non-Advanced (410) case 0x48: // ??? Seen on DreamStation 2 non-Advanced (410)
// Appears between 0x2C and 0x2E, but the only values we've seen other than 0 is // Appears between 0x2C (ramp time) and 0x2E (flex mode), with a value of 0-4.
// 1, which doesn't seem to be like a reasonable pressure (for ramp pressure) nor
// a boolean setting, which tends to be 0x80.
CHECK_VALUE(len, 1); CHECK_VALUE(len, 1);
CHECK_VALUES(data[pos], 0, 1); if (data[pos] > 4) {
UNEXPECTED_VALUE(data[pos], "0-4");
}
//this->AddEvent(new PRS1UnknownDataEvent(QByteArray((const char*) data, size), pos, len)); //this->AddEvent(new PRS1UnknownDataEvent(QByteArray((const char*) data, size), pos, len));
break; break;
case 0x4a: // Patient controls access, specific to DreamStation 2. case 0x4a: // Patient controls access, specific to DreamStation 2.