From 1d805fd9bc9b347e16d9c43dc731a55fb23762a4 Mon Sep 17 00:00:00 2001 From: sawinglogz <3787776-sawinglogz@users.noreply.gitlab.com> Date: Fri, 4 Oct 2019 13:12:24 -0400 Subject: [PATCH] Fix warnings about unknown duration events for F0V23. We should eventually import and graph these, even if we don't yet understand them. --- oscar/SleepLib/loader_plugins/prs1_loader.cpp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/oscar/SleepLib/loader_plugins/prs1_loader.cpp b/oscar/SleepLib/loader_plugins/prs1_loader.cpp index 8b44f51f..7ae8344d 100644 --- a/oscar/SleepLib/loader_plugins/prs1_loader.cpp +++ b/oscar/SleepLib/loader_plugins/prs1_loader.cpp @@ -2994,6 +2994,9 @@ bool PRS1Import::ParseF0Events() t = qint64(event->timestamp + e->m_start) * 1000L; switch (e->m_type) { + case PRS1SnoresAtPressureEvent::TYPE: + case PRS1UnknownDurationEvent::TYPE: // TODO: we should import and graph this + break; // not imported or displayed case PRS1PressureSetEvent::TYPE: if (!PRESSURE) { if (!(PRESSURE = session->AddEventList(CPAP_Pressure, EVL_Event, e->m_gain))) { return false; } @@ -3564,7 +3567,7 @@ bool PRS1Import::ParseEventsF0V6() switch (e->m_type) { case PRS1SnoresAtPressureEvent::TYPE: - case PRS1UnknownDurationEvent::TYPE: + case PRS1UnknownDurationEvent::TYPE: // TODO: We should import and graph this case PRS1AutoPressureSetEvent::TYPE: break; // not imported or displayed case PRS1PressureSetEvent::TYPE: