mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 10:40:42 +00:00
Fix warnings about unknown duration events for F0V23.
We should eventually import and graph these, even if we don't yet understand them.
This commit is contained in:
parent
9f8f9224ab
commit
1d805fd9bc
@ -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:
|
||||
|
Loading…
Reference in New Issue
Block a user