mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 02:30:44 +00:00
Add support for AVAPS in overview pressure chart.
This commit is contained in:
parent
4a5322c350
commit
a8cd0a72b4
@ -21,6 +21,8 @@
|
||||
</ul>
|
||||
<li>[new] Add the "peak flow" channel reported by pre-DreamStation ventilators.</li>
|
||||
<li>[new] Automatically detect and resolve graphics-related crashes on Windows.</li>
|
||||
<li>[new] Support AVAPS in the Overview pressure chart.</li>
|
||||
<li>[fix] Fix missing bars in the Overview pressure chart for Philips Respironics devices.</li>
|
||||
<li>[fix] Add support for the Bi-Flex lock setting on pre-DreamStation ventilators.</li>
|
||||
<li>[fix] Fix the pressure waveform scale for the BiPAP autoSV Advanced 30 (960T)</li>
|
||||
<li>[fix] Add support for rise time mode on DreamStation BiPAP devices (600X-700X).</li>
|
||||
|
@ -229,6 +229,11 @@ void gPressureChart::populate(Day * day, int idx)
|
||||
addSlice(CPAP_IPAPHi);
|
||||
|
||||
} else if (mode == MODE_AVAPS) {
|
||||
// TODO
|
||||
addSlice(CPAP_EPAP);
|
||||
if (!day->summaryOnly()) {
|
||||
addSlice(CPAP_IPAP, ST_MID);
|
||||
addSlice(CPAP_IPAP, ST_90P);
|
||||
}
|
||||
addSlice(CPAP_IPAPHi);
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user