mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 10:40:42 +00:00
Do not add 10 to Hypopnea duration as was done in SleepyHead. ResMed does not report Hypopnea duration so we should not invent it.
This commit is contained in:
parent
e0c70bf082
commit
0d0a5550d0
@ -2385,7 +2385,7 @@ bool ResmedLoader::LoadEVE(Session *sess, const QString & path)
|
||||
|
||||
if (sess->checkInside(tt)) OA->AddEvent(tt, duration);
|
||||
} else if (matchSignal(CPAP_Hypopnea, t)) {
|
||||
if (sess->checkInside(tt)) HY->AddEvent(tt, duration + 10); // Only Hyponea's Need the extra duration???
|
||||
if (sess->checkInside(tt)) HY->AddEvent(tt, duration /*+ 10*/); // Only Hyponea's Need the extra duration???
|
||||
} else if (matchSignal(CPAP_Apnea, t)) {
|
||||
if (sess->checkInside(tt)) UA->AddEvent(tt, duration);
|
||||
} else if (matchSignal(CPAP_RERA, t)) {
|
||||
|
Loading…
Reference in New Issue
Block a user