mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 18:50:44 +00:00
Skip 20 secs of TiVol, RR, and MinVent; update release notes
This commit is contained in:
parent
8e2748da78
commit
321a94379f
@ -15,6 +15,7 @@
|
|||||||
<br>Portions of OSCAR are © 2019-2022 by
|
<br>Portions of OSCAR are © 2019-2022 by
|
||||||
<i>The OSCAR Team</i></p>
|
<i>The OSCAR Team</i></p>
|
||||||
<ul>
|
<ul>
|
||||||
|
<li>[new] Skip first 20 seconds of TiVol, RR, and MinVent in ResMed loader.</li>
|
||||||
<li>[new] Add ResMed 39423 Canadian Autoset to tested list.</li>
|
<li>[new] Add ResMed 39423 Canadian Autoset to tested list.</li>
|
||||||
<li>[fix] Fix pressure values for AutoForHer mode on AS1x.</li>
|
<li>[fix] Fix pressure values for AutoForHer mode on AS1x.</li>
|
||||||
<li>[fix] Fix missing oximetry and motion waveforms on Overview pages.</li>
|
<li>[fix] Fix missing oximetry and motion waveforms on Overview pages.</li>
|
||||||
|
@ -3376,6 +3376,11 @@ void ResmedLoader::ToTimeDelta(Session *sess, ResMedEDFInfo &edf, EDFSignal &es,
|
|||||||
startpos = 5; // Shave the first 10 seconds of pressure data
|
startpos = 5; // Shave the first 10 seconds of pressure data
|
||||||
tt += rate * startpos;
|
tt += rate * startpos;
|
||||||
}
|
}
|
||||||
|
// Likewise for the values that the machine computes for us, but 20 seconds
|
||||||
|
if ((code == CPAP_MinuteVent) || (code == CPAP_RespRate) || (code == CPAP_TidalVolume)) {
|
||||||
|
startpos = 10; // Shave the first 20 seconds of computed data
|
||||||
|
tt += rate * startpos;
|
||||||
|
}
|
||||||
|
|
||||||
qint16 *sptr = es.dataArray;
|
qint16 *sptr = es.dataArray;
|
||||||
qint16 *eptr = sptr + samples;
|
qint16 *eptr = sptr + samples;
|
||||||
|
Loading…
Reference in New Issue
Block a user