mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 10:40:42 +00:00
Turn on some more oximeter port debugging
This commit is contained in:
parent
5a9c44f98e
commit
96f6bffb05
@ -170,10 +170,15 @@ bool FPIconLoader::OpenFLW(Machine * mach,QString filename, Profile * profile)
|
||||
|
||||
quint16 t1,t2;
|
||||
quint32 ts;
|
||||
qint64 ti;
|
||||
qint8 b;
|
||||
//QByteArray line;
|
||||
|
||||
char * buf=data.data();
|
||||
char * buf=data.data()+4;
|
||||
|
||||
EventList * flow=NULL;
|
||||
qint16 dat[0x34];
|
||||
EventDataType rate=200;
|
||||
do {
|
||||
in >> t1;
|
||||
in >> t2;
|
||||
@ -182,12 +187,37 @@ bool FPIconLoader::OpenFLW(Machine * mach,QString filename, Profile * profile)
|
||||
|
||||
ts+=epoch;
|
||||
|
||||
if (!Sessions.contains(ts))
|
||||
if (!Sessions.contains(ts)) {
|
||||
// Skip until ends in 0xFF FF FF 7F
|
||||
// skip 0
|
||||
break;
|
||||
}
|
||||
Session *sess=Sessions[ts];
|
||||
|
||||
// ends in 0xFF FF FF 7F
|
||||
flow=sess->AddEventList(CPAP_FlowRate,EVL_Waveform,1.0,0,0,0,rate);
|
||||
|
||||
ti=qint64(ts)*1000L;
|
||||
int i;
|
||||
do {
|
||||
in >> t1;
|
||||
for (i=0;i<0x34;i++) {
|
||||
if (t1==0xffff)
|
||||
break;
|
||||
dat[i]=t1;
|
||||
in >> t1;
|
||||
}
|
||||
flow->AddWaveform(ti,dat,i,i*rate);
|
||||
} while ((t1!=0xff7f) && !in.atEnd());
|
||||
|
||||
if (in.atEnd()) break;
|
||||
|
||||
do {
|
||||
in >> b;
|
||||
} while (!b);
|
||||
|
||||
t1=b << 8;
|
||||
in >> b;
|
||||
t1|=b;
|
||||
} while (!in.atEnd());
|
||||
|
||||
return true;
|
||||
|
10
oximetry.cpp
10
oximetry.cpp
@ -960,11 +960,11 @@ void Oximetry::on_RefreshPortsButton_clicked()
|
||||
z++;
|
||||
}
|
||||
}
|
||||
//qDebug() << "Serial Port:" << ports.at(i).qesPORTNAME << ports.at(i).friendName;
|
||||
//qDebug() << "port name:" << ports.at(i).portName;
|
||||
//qDebug() << "phys name:" << ports.at(i).physName;
|
||||
//qDebug() << "friendly name:" << ports.at(i).friendName;
|
||||
//qDebug() << "enumerator name:" << ports.at(i).enumName;
|
||||
qDebug() << "Serial Port:" << ports.at(i).qesPORTNAME << ports.at(i).friendName;
|
||||
qDebug() << "port name:" << ports.at(i).portName;
|
||||
qDebug() << "phys name:" << ports.at(i).physName;
|
||||
qDebug() << "friendly name:" << ports.at(i).friendName;
|
||||
qDebug() << "enumerator name:" << ports.at(i).enumName;
|
||||
}
|
||||
if (z>0) {
|
||||
ui->RunButton->setEnabled(true);
|
||||
|
Loading…
Reference in New Issue
Block a user