mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-06 03:00:43 +00:00
PRS1 ASV Tidal Volume fix
This commit is contained in:
parent
69dde95b81
commit
7501b842eb
@ -782,7 +782,7 @@ bool PRS1Loader::Parse002ASV(Session *session,unsigned char *buffer,int size,qin
|
||||
//for (int i=0;i<0x20;i++) Code[i]=NULL;
|
||||
|
||||
session->updateFirst(timestamp);
|
||||
EventDataType data[10];
|
||||
EventDataType data[10],tmp;
|
||||
|
||||
//qint64 start=timestamp;
|
||||
qint64 t=timestamp;
|
||||
@ -946,7 +946,8 @@ bool PRS1Loader::Parse002ASV(Session *session,unsigned char *buffer,int size,qin
|
||||
Code[16]->AddEvent(t,buffer[pos++]); // Breaths Per Minute
|
||||
Code[17]->AddEvent(t,buffer[pos++]); // Patient Triggered Breaths
|
||||
Code[18]->AddEvent(t,buffer[pos++]); // Minute Ventilation
|
||||
Code[19]->AddEvent(t,buffer[pos++]); // Tidal Volume
|
||||
tmp=buffer[pos++]*10.0;
|
||||
Code[19]->AddEvent(t,tmp); // Tidal Volume
|
||||
Code[20]->AddEvent(t,data[2]=buffer[pos++]); // Snore
|
||||
if (data[2]>0) {
|
||||
if (!Code[21]) {
|
||||
|
Loading…
Reference in New Issue
Block a user