mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-06 03:00:43 +00:00
Merge identical F5V0 and F5V1 and remove unused F5V2 summary parsers.
This commit is contained in:
parent
0d8e37c94c
commit
1cd7ac7c14
@ -3189,7 +3189,7 @@ bool PRS1Import::ParseSummaryF3()
|
|||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
bool PRS1Import::ParseSummaryF5V0()
|
bool PRS1Import::ParseSummaryF5V012()
|
||||||
{
|
{
|
||||||
const unsigned char * data = (unsigned char *)summary->m_data.constData();
|
const unsigned char * data = (unsigned char *)summary->m_data.constData();
|
||||||
|
|
||||||
@ -3269,96 +3269,6 @@ bool PRS1Import::ParseSummaryF5V0()
|
|||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
bool PRS1Import::ParseSummaryF5V1()
|
|
||||||
{
|
|
||||||
const unsigned char * data = (unsigned char *)summary->m_data.constData();
|
|
||||||
|
|
||||||
CPAPMode cpapmode = MODE_UNKNOWN;
|
|
||||||
|
|
||||||
int imin_epap = data[0x3];
|
|
||||||
int imax_epap = data[0x4];
|
|
||||||
int imin_ps = data[0x5];
|
|
||||||
int imax_ps = data[0x6];
|
|
||||||
int imax_pressure = data[0x2];
|
|
||||||
|
|
||||||
cpapmode = MODE_ASV_VARIABLE_EPAP;
|
|
||||||
|
|
||||||
session->settings[CPAP_Mode] = (int)cpapmode;
|
|
||||||
|
|
||||||
if (cpapmode == MODE_CPAP) {
|
|
||||||
session->settings[CPAP_Pressure] = imin_epap/10.0f;
|
|
||||||
|
|
||||||
} else if (cpapmode == MODE_BILEVEL_FIXED) {
|
|
||||||
session->settings[CPAP_EPAP] = imin_epap/10.0f;
|
|
||||||
session->settings[CPAP_IPAP] = imax_epap/10.0f;
|
|
||||||
|
|
||||||
} else if (cpapmode == MODE_ASV_VARIABLE_EPAP) {
|
|
||||||
//int imax_ipap = imax_epap + imax_ps;
|
|
||||||
int imin_ipap = imin_epap + imin_ps;
|
|
||||||
|
|
||||||
session->settings[CPAP_EPAPLo] = imin_epap / 10.0f;
|
|
||||||
session->settings[CPAP_EPAPHi] = imax_epap / 10.0f;
|
|
||||||
session->settings[CPAP_IPAPLo] = imin_ipap / 10.0f;
|
|
||||||
session->settings[CPAP_IPAPHi] = imax_pressure / 10.0f;
|
|
||||||
session->settings[CPAP_PSMin] = imin_ps / 10.0f;
|
|
||||||
session->settings[CPAP_PSMax] = imax_ps / 10.0f;
|
|
||||||
}
|
|
||||||
|
|
||||||
quint8 flex = data[0x0c];
|
|
||||||
|
|
||||||
int flexlevel = flex & 0x03;
|
|
||||||
FlexMode flexmode = FLEX_Unknown;
|
|
||||||
|
|
||||||
flex &= 0xf8;
|
|
||||||
bool split = false;
|
|
||||||
|
|
||||||
if (flex & 0x40) { // This bit defines the Flex setting for the CPAP component of the Split night
|
|
||||||
split = true;
|
|
||||||
}
|
|
||||||
if (flex & 0x80) { // CFlex bit
|
|
||||||
if (flex & 0x10) {
|
|
||||||
flexmode = FLEX_RiseTime;
|
|
||||||
} else if (flex & 8) { // Plus bit
|
|
||||||
if (split || (cpapmode == MODE_CPAP)) {
|
|
||||||
flexmode = FLEX_CFlexPlus;
|
|
||||||
} else if (cpapmode == MODE_APAP) {
|
|
||||||
flexmode = FLEX_AFlex;
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
// CFlex bits refer to Rise Time on BiLevel machines
|
|
||||||
flexmode = (cpapmode >= MODE_BILEVEL_FIXED) ? FLEX_BiFlex : FLEX_CFlex;
|
|
||||||
}
|
|
||||||
} else flexmode = FLEX_None;
|
|
||||||
|
|
||||||
session->settings[PRS1_FlexMode] = (int)flexmode;
|
|
||||||
session->settings[PRS1_FlexLevel] = (int)flexlevel;
|
|
||||||
|
|
||||||
|
|
||||||
int ramp_time = data[0x0a];
|
|
||||||
EventDataType ramp_pressure = EventDataType(data[0x0b]) / 10.0;
|
|
||||||
|
|
||||||
session->settings[CPAP_RampTime] = (int)ramp_time;
|
|
||||||
session->settings[CPAP_RampPressure] = ramp_pressure;
|
|
||||||
|
|
||||||
session->settings[PRS1_HumidStatus] = (bool)(data[0x0d] & 0x80); // Humidifier Connected
|
|
||||||
session->settings[PRS1_HeatedTubing] = (bool)(data[0x0d] & 0x10); // Heated Hose??
|
|
||||||
session->settings[PRS1_HumidLevel] = (int)(data[0x0d] & 7); // Humidifier Value
|
|
||||||
|
|
||||||
summary_duration = data[0x18] | data[0x19] << 8;
|
|
||||||
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
|
|
||||||
bool PRS1Import::ParseSummaryF5V2()
|
|
||||||
{
|
|
||||||
const unsigned char * data = (unsigned char *)summary->m_data.constData();
|
|
||||||
|
|
||||||
//CPAPMode cpapmode = MODE_UNKNOWN;
|
|
||||||
summary_duration = data[0x18] | data[0x19] << 8;
|
|
||||||
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
|
|
||||||
bool PRS1Import::ParseSummaryF5V3()
|
bool PRS1Import::ParseSummaryF5V3()
|
||||||
{
|
{
|
||||||
bool ok;
|
bool ok;
|
||||||
@ -3682,11 +3592,11 @@ bool PRS1Import::ParseSummary()
|
|||||||
break;
|
break;
|
||||||
case 5:
|
case 5:
|
||||||
if (summary->familyVersion == 1) {
|
if (summary->familyVersion == 1) {
|
||||||
return ParseSummaryF5V1();
|
return ParseSummaryF5V012();
|
||||||
} else if (summary->familyVersion == 0) {
|
} else if (summary->familyVersion == 0) {
|
||||||
return ParseSummaryF5V0();
|
return ParseSummaryF5V012();
|
||||||
} else if (summary->familyVersion == 2) {
|
} else if (summary->familyVersion == 2) {
|
||||||
return ParseSummaryF5V1();
|
return ParseSummaryF5V012();
|
||||||
} else if (summary->familyVersion == 3) {
|
} else if (summary->familyVersion == 3) {
|
||||||
return ParseSummaryF5V3();
|
return ParseSummaryF5V3();
|
||||||
}
|
}
|
||||||
|
@ -220,12 +220,8 @@ public:
|
|||||||
bool ParseSummaryF0V4();
|
bool ParseSummaryF0V4();
|
||||||
//! \brief Summary parser for 1060 series AVAPS models
|
//! \brief Summary parser for 1060 series AVAPS models
|
||||||
bool ParseSummaryF3();
|
bool ParseSummaryF3();
|
||||||
//! \brief Summary parser for 50 series Family 5-0 BiPAP/AutoSV models
|
//! \brief Summary parser for 50 series Family 5-0 through 60 series Family 5-2 BiPAP/AutoSV models
|
||||||
bool ParseSummaryF5V0();
|
bool ParseSummaryF5V012();
|
||||||
//! \brief Summary parser for 60 series Family 5-1 BiPAP/AutoSV models
|
|
||||||
bool ParseSummaryF5V1();
|
|
||||||
//! \brief Summary parser for 60 series Family 5-2 BiPAP/AutoSV models
|
|
||||||
bool ParseSummaryF5V2();
|
|
||||||
//! \brief Summary parser for 60 series Family 5-3 BiPAP/AutoSV models
|
//! \brief Summary parser for 60 series Family 5-3 BiPAP/AutoSV models
|
||||||
bool ParseSummaryF5V3();
|
bool ParseSummaryF5V3();
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user