Oximetry again..

This commit is contained in:
Mark Watkins 2011-12-04 01:48:36 +10:00
parent c2c9d73977
commit 6d40ffcaf9
3 changed files with 37 additions and 51 deletions

View File

@ -165,12 +165,6 @@ void SerialOximeter::setStopBits(StopBitsType stopbits)
m_stopbits=stopbits; m_stopbits=stopbits;
} }
void SerialOximeter::ReadyRead()
{
int i=5;
qDebug() << "Foo" << i;
}
void SerialOximeter::addPulse(qint64 time, EventDataType pr) void SerialOximeter::addPulse(qint64 time, EventDataType pr)
{ {
static EventDataType lastpr=0; static EventDataType lastpr=0;
@ -278,17 +272,6 @@ void SerialOximeter::compactToEvent(EventList *el)
el->getData()=nel.getData(); el->getData()=nel.getData();
el->getTime()=nel.getTime(); el->getTime()=nel.getTime();
/*for (int i=0;i<nel.count();i++) {
el->getData().push_back(nel.data(i));
el->getTime().push_back(nel.time(i));
} */
/*double rate=double(el->duration())/double(el->count());
el->setType(EVL_Waveform);
el->setRate(rate);
el->getTime().clear();*/
} }
void SerialOximeter::compactAll() void SerialOximeter::compactAll()
@ -343,12 +326,11 @@ bool SerialOximeter::startLive()
{ {
m_mode=SO_LIVE; m_mode=SO_LIVE;
import_mode=false; import_mode=false;
if (Open(QextSerialPort::EventDriven)) {
createSession(); if (!Open(QextSerialPort::EventDriven)) return false;
return true; createSession();
} else {
return false; return true;
}
} }
void SerialOximeter::stopLive() void SerialOximeter::stopLive()
@ -623,22 +605,11 @@ void CMS50Serial::ReadyRead()
} }
} }
} }
//static unsigned char b1[6]={0xf5,0xf5,0xf5,0xf5,0xf5,0xf5};
if (import_mode && waitf6 && (cntf6==0)) { if (import_mode && waitf6 && (cntf6==0)) {
failcnt++; failcnt++;
/*if (failcnt>20) {
qDebug() << "Retrying request";
if (m_port->write((char *)b1,6)==-1) {
qDebug() << "Couldn't write data request bytes to CMS50";
}
} */
if (failcnt>4) { if (failcnt>4) {
static unsigned char b1[3]={0xf6,0xf6,0xf6}; // Device missed the 0xf5 code sequence somehow..
if (m_port->write((char *)b1,2)==-1) {
qDebug() << "Couldn't write closing bytes to CMS50";
}
m_port->flush();
Close(); Close();
emit(importAborted()); emit(importAborted());
return; return;
@ -646,18 +617,32 @@ void CMS50Serial::ReadyRead()
} }
if (!import_mode) if (!import_mode)
emit(dataChanged()); emit(dataChanged());
else if (done_import){ else if (done_import) {
qDebug() << "End"; qDebug() << "End";
static unsigned char b1[3]={0xf6,0xf6,0xf6}; resetDevice();
if (m_port->write((char *)b1,2)==-1) {
qDebug() << "Couldn't write closing bytes to CMS50";
}
m_port->flush();
Close(); Close();
emit(importProcess()); emit(importProcess());
} }
} }
void CMS50Serial::resetDevice()
{
static unsigned char b1[3]={0xf6,0xf6,0xf6};
if (m_port->write((char *)b1,3)==-1) {
qDebug() << "Couldn't write closing bytes to CMS50";
}
m_port->flush();
}
void CMS50Serial::requestData()
{
static unsigned char b1[2]={0xf5,0xf5};
if (m_port->write((char *)b1,2)==-1) {
qDebug() << "Couldn't write data request bytes to CMS50";
}
m_port->flush();
}
bool CMS50Serial::startImport() bool CMS50Serial::startImport()
{ {
@ -668,17 +653,13 @@ bool CMS50Serial::startImport()
cntf6=0; cntf6=0;
failcnt=0; failcnt=0;
//QMessageBox::information(0,"Get Ready","Please make sure your oximeter is switched on and in the correct mode for data transfer.",QMessageBox::Ok); //QMessageBox::information(0,"Get Ready","Please make sure your oximeter is switched on and in the correct mode for data transfer.",QMessageBox::Ok);
if (!Open(QextSerialPort::EventDriven)) if (!Open(QextSerialPort::EventDriven)) return false;
return false;
connect(this,SIGNAL(importProcess()),this,SLOT(import_process()));
createSession(); createSession();
static unsigned char b1[2]={0xf5,0xf5}; connect(this,SIGNAL(importProcess()),this,SLOT(import_process()));
if (m_port->write((char *)b1,2)==-1) { requestData();
qDebug() << "Couldn't write data request bytes to CMS50";
}
return true; return true;
} }

View File

@ -37,6 +37,9 @@ public:
virtual bool startLive(); virtual bool startLive();
virtual void stopLive(); virtual void stopLive();
virtual void resetDevice()=0;
virtual void requestData()=0;
SerialOxMode mode() { return m_mode; } SerialOxMode mode() { return m_mode; }
void destroySession() { delete session; session=NULL; } void destroySession() { delete session; session=NULL; }
@ -84,7 +87,7 @@ signals:
void updateSpO2(float p); void updateSpO2(float p);
protected slots: protected slots:
virtual void ReadyRead(); virtual void ReadyRead()=0;
virtual void import_process()=0; virtual void import_process()=0;
virtual void Timeout(); virtual void Timeout();
@ -128,6 +131,8 @@ public:
explicit CMS50Serial(QObject * parent,QString portname); explicit CMS50Serial(QObject * parent,QString portname);
virtual ~CMS50Serial(); virtual ~CMS50Serial();
virtual bool startImport(); virtual bool startImport();
virtual void resetDevice();
virtual void requestData();
protected: protected:
virtual void import_process(); virtual void import_process();

View File

@ -6,8 +6,8 @@
<rect> <rect>
<x>0</x> <x>0</x>
<y>0</y> <y>0</y>
<width>662</width> <width>780</width>
<height>361</height> <height>436</height>
</rect> </rect>
</property> </property>
<property name="windowTitle"> <property name="windowTitle">