mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 10:40:42 +00:00
Don't skip the first 40 seconds of ResMed low-rate pressure data.
This commit is contained in:
parent
e633a82de4
commit
e20518e84c
@ -44,6 +44,7 @@
|
||||
<li>[fix] Statistics headings will now be 99.5% or Max, depending on machine type and preference settings.</li>
|
||||
<li>[fix] Mark exported Journal backup file as UTF-8.</li>
|
||||
<li>[fix] Improve error message when unable to access OSCAR database.</li>
|
||||
<li>[fix] Stop skipping the first 40 seconds of ResMed low-rate pressure data.</li>
|
||||
</ul>
|
||||
<p>
|
||||
<b>Changes and fixes in OSCAR v1.2.0</b>
|
||||
|
@ -3057,10 +3057,11 @@ void ResmedLoader::ToTimeDelta(Session *sess, ResMedEDFInfo &edf, EDFSignal &es,
|
||||
|
||||
int startpos = 0;
|
||||
|
||||
if ((code == CPAP_Pressure) || (code == CPAP_IPAP) || (code == CPAP_EPAP)) {
|
||||
startpos = 20; // Shave the first 20 seconds of pressure data
|
||||
tt += rate * startpos;
|
||||
}
|
||||
// There's no reason to skip the first 40 seconds of slow data
|
||||
// if ((code == CPAP_Pressure) || (code == CPAP_IPAP) || (code == CPAP_EPAP)) {
|
||||
// startpos = 20; // Shave the first 40 seconds of pressure data
|
||||
// tt += rate * startpos;
|
||||
// }
|
||||
|
||||
qint16 *sptr = es.dataArray;
|
||||
qint16 *eptr = sptr + recs;
|
||||
|
Loading…
Reference in New Issue
Block a user