diff --git a/Htmldocs/release_notes.html b/Htmldocs/release_notes.html index 50d8d281..b35375ed 100644 --- a/Htmldocs/release_notes.html +++ b/Htmldocs/release_notes.html @@ -21,6 +21,8 @@
  • [new] Add the "peak flow" channel reported by pre-DreamStation ventilators.
  • [new] Automatically detect and resolve graphics-related crashes on Windows.
  • +
  • [new] Support AVAPS in the Overview pressure chart.
  • +
  • [fix] Fix missing bars in the Overview pressure chart for Philips Respironics devices.
  • [fix] Add support for the Bi-Flex lock setting on pre-DreamStation ventilators.
  • [fix] Fix the pressure waveform scale for the BiPAP autoSV Advanced 30 (960T)
  • [fix] Add support for rise time mode on DreamStation BiPAP devices (600X-700X).
  • diff --git a/oscar/Graphs/gPressureChart.cpp b/oscar/Graphs/gPressureChart.cpp index 83b94427..e7f8b98d 100644 --- a/oscar/Graphs/gPressureChart.cpp +++ b/oscar/Graphs/gPressureChart.cpp @@ -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); } }