mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 02:30:44 +00:00
Add Comfort to StoreSettings
This commit is contained in:
parent
b29d8ae3f8
commit
8c18683274
@ -82,7 +82,6 @@ public:
|
||||
min_ipap = -1;
|
||||
epr = -1;
|
||||
epr_level = -1;
|
||||
comfort = -1;
|
||||
sessionid = 0;
|
||||
|
||||
ahi = -1;
|
||||
@ -140,6 +139,7 @@ public:
|
||||
s_TempEnable = -1;
|
||||
s_Temp = -1;
|
||||
s_SmartStart = -1;
|
||||
s_Comfort = -1;
|
||||
|
||||
ramp_pressure = -1;
|
||||
|
||||
@ -171,7 +171,6 @@ public:
|
||||
EventDataType min_ipap;
|
||||
EventDataType epr;
|
||||
EventDataType epr_level;
|
||||
EventDataType comfort;
|
||||
quint32 sessionid;
|
||||
EventDataType ahi;
|
||||
EventDataType oai;
|
||||
@ -223,6 +222,7 @@ public:
|
||||
int s_TempEnable;
|
||||
EventDataType s_Temp;
|
||||
int s_SmartStart;
|
||||
int s_Comfort;
|
||||
|
||||
};
|
||||
|
||||
|
@ -1507,7 +1507,7 @@ bool ResmedLoader::ProcessSTRfiles(Machine *mach, QMap<QDate, STRFile> & STRmap,
|
||||
if ((mode == MODE_CPAP) || (mode == MODE_APAP)) {
|
||||
if ((sig = str.lookupLabel("S.AS.Comfort"))) { // first check machines opinion
|
||||
a1x = true;
|
||||
R.comfort = EventDataType(sig->dataArray[rec]) * sig->gain + sig->offset;
|
||||
R.s_Comfort = EventDataType(sig->dataArray[rec]) * sig->gain + sig->offset;
|
||||
}
|
||||
if ((sig = str.lookupSignal(RMS9_EPR))) {
|
||||
epr= EventDataType(sig->dataArray[rec]) * sig->gain + sig->offset;
|
||||
@ -2065,6 +2065,9 @@ void StoreSettings(Session * sess, STRRecord & R)
|
||||
if (R.min_ipap >= 0) sess->settings[CPAP_IPAPLo] = R.min_ipap;
|
||||
if (R.min_ps >= 0) sess->settings[CPAP_PSMin] = R.min_ps;
|
||||
if (R.max_ps >= 0) sess->settings[CPAP_PSMax] = R.max_ps;
|
||||
} else if (R.mode == MODE_A4Her) {
|
||||
if (R.min_pressure >= 0) sess->settings[CPAP_PressureMin] = R.min_pressure;
|
||||
if (R.max_pressure >= 0) sess->settings[CPAP_PressureMax] = R.max_pressure;
|
||||
}
|
||||
} else {
|
||||
if (R.set_pressure >= 0) sess->settings[CPAP_Pressure] = R.set_pressure;
|
||||
@ -2131,6 +2134,9 @@ void StoreSettings(Session * sess, STRRecord & R)
|
||||
sess->settings[RMS9_Temp] = (short)R.s_Temp;
|
||||
}
|
||||
}
|
||||
if (R.s_Comfort >= 0) {
|
||||
sess->settings[RMAS1x_Comfort] = R.s_Comfort;
|
||||
}
|
||||
}
|
||||
|
||||
struct OverlappingEDF {
|
||||
|
Loading…
Reference in New Issue
Block a user