Add support for AVAPS in overview pressure chart.

This commit is contained in:
sawinglogz 2020-04-27 20:13:26 -04:00
parent 4a5322c350
commit a8cd0a72b4
2 changed files with 8 additions and 1 deletions

View File

@ -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>

View File

@ -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);
}
}