From a8cd0a72b46c853fefc07fc3e65e5daa1b2a001b Mon Sep 17 00:00:00 2001 From: sawinglogz <3787776-sawinglogz@users.noreply.gitlab.com> Date: Mon, 27 Apr 2020 20:13:26 -0400 Subject: [PATCH] Add support for AVAPS in overview pressure chart. --- Htmldocs/release_notes.html | 2 ++ oscar/Graphs/gPressureChart.cpp | 7 ++++++- 2 files changed, 8 insertions(+), 1 deletion(-) 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); } }