Add stub F3V3 summary parser so that events and waveforms will still get loaded.

This commit is contained in:
sawinglogz 2019-07-23 20:54:39 -04:00
parent 83b80cb252
commit 872fe74008
2 changed files with 14 additions and 0 deletions

View File

@ -3549,6 +3549,15 @@ bool PRS1DataChunk::ParseSummaryF0V4(void)
}
// TODO: Add support for F3V3 (1061T, 1160P). This is just a stub.
bool PRS1DataChunk::ParseSummaryF3V3(void)
{
this->AddEvent(new PRS1ParsedSettingEvent(PRS1_SETTING_CPAP_MODE, (int) MODE_UNKNOWN));
this->duration = 0;
return true;
}
bool PRS1DataChunk::ParseSummaryF3V6(void)
{
CPAPMode mode = MODE_UNKNOWN;
@ -4794,6 +4803,8 @@ bool PRS1DataChunk::ParseSummary()
case 3:
if (this->familyVersion == 6) {
return this->ParseSummaryF3V6();
} else if (this->familyVersion == 3) {
return this->ParseSummaryF3V3();
}
break;
case 5:

View File

@ -149,6 +149,9 @@ public:
//! \brief Parse a single data chunk from a .001 file containing summary data for a family 0 CPAP/APAP family version 6 machine
bool ParseSummaryF0V6(void);
//! \brief Parse a single data chunk from a .001 file containing summary data for a family 3 ventilator (family version 3) machine
bool ParseSummaryF3V3(void);
//! \brief Parse a single data chunk from a .001 file containing summary data for a family 3 ventilator (family version 6) machine
bool ParseSummaryF3V6(void);