diff --git a/Htmldocs/release_notes.html b/Htmldocs/release_notes.html index b35375ed..83b4b468 100644 --- a/Htmldocs/release_notes.html +++ b/Htmldocs/release_notes.html @@ -23,6 +23,7 @@
  • [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 missing Philips Respironics pressure channels to CSV export.
  • [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/exportcsv.cpp b/oscar/exportcsv.cpp index 5842cfd3..4c5e6a32 100644 --- a/oscar/exportcsv.cpp +++ b/oscar/exportcsv.cpp @@ -181,7 +181,7 @@ void ExportCSV::on_exportButton_clicked() countlist.append(CPAP_UserFlag2); countlist.append(CPAP_PressurePulse); - QVector statChannels = { CPAP_Pressure, CPAP_IPAP, CPAP_EPAP, CPAP_FLG }; + QVector statChannels = { CPAP_Pressure, CPAP_PressureSet, CPAP_IPAP, CPAP_IPAPSet, CPAP_EPAP, CPAP_EPAPSet, CPAP_FLG }; for (auto & chan : statChannels) { avglist.append(chan); p90list.append(chan);