CMS50 Serial import reliability fixes

This commit is contained in:
Mark Watkins 2014-06-21 00:17:41 +10:00
parent c2ea072340
commit c59a377e89
5 changed files with 115 additions and 68 deletions

View File

@ -80,6 +80,7 @@ int CMS50Loader::Open(QString path, Profile *profile)
started_import = false; started_import = false;
started_reading = false; started_reading = false;
finished_import = false; finished_import = false;
setStatus(NEUTRAL);
imp_callbacks = 0; imp_callbacks = 0;
cb_reset = 0; cb_reset = 0;
@ -93,12 +94,26 @@ int CMS50Loader::Open(QString path, Profile *profile)
// Cheating using path for two serial oximetry modes // Cheating using path for two serial oximetry modes
if (path.compare("import") == 0) { if (path.compare("import") == 0) {
for (int i=0; i<5; ++i) {
resetDevice();
serial.flush();
// QThread::msleep(50);
QApplication::processEvents();
}
serial.clear();
setStatus(IMPORTING); setStatus(IMPORTING);
startTimer.stop(); startTimer.stop();
startImportTimeout(); startImportTimeout();
return 1; return 1;
} else if (path.compare("live") == 0) { } else if (path.compare("live") == 0) {
for (int i=0; i<5; ++i) {
resetDevice();
serial.flush();
QApplication::processEvents();
}
serial.clear();
m_startTime = QDateTime::currentDateTime(); m_startTime = QDateTime::currentDateTime();
@ -147,7 +162,8 @@ void CMS50Loader::processBytes(QByteArray bytes)
idx = doLiveMode(); idx = doLiveMode();
break; break;
default: default:
qDebug() << "Device mode not supported by" << ClassName(); ;
// qDebug() << "Device mode not supported by" << ClassName();
} }
if (idx >= available) { if (idx >= available) {
@ -169,7 +185,7 @@ void CMS50Loader::processBytes(QByteArray bytes)
int CMS50Loader::doImportMode() int CMS50Loader::doImportMode()
{ {
int available = buffer.size(); int available = buffer.size();
Q_ASSERT(!finished_import); // Q_ASSERT(!finished_import);
int hour,minute; int hour,minute;
int idx = 0; int idx = 0;
while (idx < available) { while (idx < available) {
@ -179,8 +195,7 @@ int CMS50Loader::doImportMode()
if (c != 0xf2) { // If not started, continue scanning for a valie header. if (c != 0xf2) { // If not started, continue scanning for a valie header.
idx++; idx++;
continue; continue;
} else { }
received_bytes=0; received_bytes=0;
hour=(unsigned char)buffer.at(idx + 1) & 0x7f; hour=(unsigned char)buffer.at(idx + 1) & 0x7f;
@ -224,18 +239,34 @@ int CMS50Loader::doImportMode()
// CMS50D+ needs an end timer because it just stops dead after uploading // CMS50D+ needs an end timer because it just stops dead after uploading
resetTimer.singleShot(2000,this,SLOT(resetImportTimeout())); resetTimer.singleShot(2000,this,SLOT(resetImportTimeout()));
QStringList data;
do {
c=(unsigned char)buffer.at(idx);
if (c == 0xf2) {
for (int i=0; i<3; ++i) {
data.push_back(QString::number((unsigned char)buffer.at(idx+i), 16));
} }
idx += 3; idx += 3;
} else {
break;
}
} while (idx < available);
qDebug() << "CMS50 Record Header bytes:" << data.join(",");
if (idx >= available) {
break;
}
// peek ahead
data.clear();
for (int i=0; i < 12; ++i) {
if ((idx+i) > available) break;
data.push_back(QString::number((unsigned char)buffer.at(idx+i), 16));
}
qDebug() << "bytes directly following header trio's:" << data.join(",");
} else { // have started import } else { // have started import
if (c == 0xf2) { // Header is repeated 3 times, ignore the extras if ((c & 0xf0) == 0xf0) { // Data trio
hour=(unsigned char)buffer.at(idx + 1) & 0x7f;
minute=(unsigned char)buffer.at(idx + 2) & 0x7f;
// check..
idx += 3;
continue;
} else if ((c & 0xf0) == 0xf0) { // Data trio
started_reading=true; // Sometimes errornous crap is sent after data rec header started_reading=true; // Sometimes errornous crap is sent after data rec header
// Recording import // Recording import
@ -252,7 +283,7 @@ int CMS50Loader::doImportMode()
// TODO: Store the data to the session // TODO: Store the data to the session
m_itemCnt++; m_itemCnt++;
m_itemCnt=m_itemCnt % m_itemTotal; m_itemCnt = m_itemCnt % m_itemTotal;
emit updateProgress(m_itemCnt, m_itemTotal); emit updateProgress(m_itemCnt, m_itemTotal);
idx += 3; idx += 3;
@ -262,13 +293,13 @@ int CMS50Loader::doImportMode()
//Completed //Completed
finished_import = true; finished_import = true;
killTimers(); killTimers();
closeDevice();
m_importing = false; m_importing = false;
m_status = NEUTRAL; m_status = NEUTRAL;
emit importComplete(this); emit importComplete(this);
resetTimer.singleShot(2000, this, SLOT(shutdownPorts()));
return available; return available;
imp_callbacks = cb_reset = 0; // imp_callbacks = cb_reset = 0;
return available; // return available;
} }
} }
} }
@ -314,10 +345,14 @@ void CMS50Loader::resetDevice() // Switch CMS50D+ device to live streaming mode
{ {
//qDebug() << "Sending reset code to CMS50 device"; //qDebug() << "Sending reset code to CMS50 device";
//m_port->flush(); //m_port->flush();
static unsigned char b1[3]={0xf6,0xf6,0xf6}; static unsigned char b1[3]={0xf6,0xf6,0xf6};
if (serial.write((char *)b1,3)==-1) {
if (serial.write((char *)b1,3) == -1) {
qDebug() << "Couldn't write data reset bytes to CMS50"; qDebug() << "Couldn't write data reset bytes to CMS50";
} }
QApplication::processEvents();
} }
void CMS50Loader::requestData() // Switch CMS50D+ device to record transmission mode void CMS50Loader::requestData() // Switch CMS50D+ device to record transmission mode
@ -325,9 +360,10 @@ void CMS50Loader::requestData() // Switch CMS50D+ device to record transmission
static unsigned char b1[2]={0xf5,0xf5}; static unsigned char b1[2]={0xf5,0xf5};
//qDebug() << "Sending request code to CMS50 device"; //qDebug() << "Sending request code to CMS50 device";
if (serial.write((char *)b1,2)==-1) { if (serial.write((char *)b1,2) == -1) {
qDebug() << "Couldn't write data request bytes to CMS50"; qDebug() << "Couldn't write data request bytes to CMS50";
} }
QApplication::processEvents();
} }
void CMS50Loader::killTimers() void CMS50Loader::killTimers()
@ -397,10 +433,14 @@ void CMS50Loader::resetImportTimeout()
// Turn back on live streaming so the end of capture can be dealt with // Turn back on live streaming so the end of capture can be dealt with
resetTimer.stop(); resetTimer.stop();
serial.flush();
resetDevice(); // Send Reset to CMS50D+ resetDevice(); // Send Reset to CMS50D+
serial.flush();
QThread::msleep(200);
resetDevice(); // Send Reset to CMS50D+
serial.flush();
serial.clear();
//started_import = false; //started_import = false;
finished_import = true; // finished_import = true;
//m_streaming=false; //m_streaming=false;
//closeDevice(); //closeDevice();
@ -411,7 +451,12 @@ void CMS50Loader::resetImportTimeout()
qDebug() << "Should CMS50 resetImportTimeout reach here?"; qDebug() << "Should CMS50 resetImportTimeout reach here?";
// else what??? // else what???
} }
cb_reset=imp_callbacks; cb_reset = imp_callbacks;
}
void CMS50Loader::shutdownPorts()
{
closeDevice();
} }

View File

@ -48,6 +48,7 @@ protected slots:
// virtual void dataAvailable(); // virtual void dataAvailable();
virtual void resetImportTimeout(); virtual void resetImportTimeout();
virtual void startImportTimeout(); virtual void startImportTimeout();
virtual void shutdownPorts();
protected: protected:

View File

@ -89,6 +89,7 @@ protected slots:
virtual void startImportTimeout() {} virtual void startImportTimeout() {}
virtual void stopRecording(); virtual void stopRecording();
virtual void shutdownPorts() {}
// virtual void abortTask(); // virtual void abortTask();
protected: protected:

View File

@ -116,6 +116,7 @@ void LogThread::run()
running = true; running = true;
do { do {
strlock.lock(); strlock.lock();
int r = receivers(SIGNAL(outputLog(QString())));
while (!buffer.isEmpty()) { while (!buffer.isEmpty()) {
QString msg = buffer.takeFirst(); QString msg = buffer.takeFirst();
fprintf(stderr, "%s\n", msg.toLocal8Bit().data()); fprintf(stderr, "%s\n", msg.toLocal8Bit().data());

View File

@ -203,14 +203,13 @@ void OximeterImport::on_directImportButton_clicked()
ui->connectLabel->setText("<h2>"+tr("Select upload option on %1").arg(oximodule->ClassName())+"</h2>"); ui->connectLabel->setText("<h2>"+tr("Select upload option on %1").arg(oximodule->ClassName())+"</h2>");
updateStatus(tr("Waiting for you to start the upload process...")); updateStatus(tr("Waiting for you to start the upload process..."));
connect(oximodule, SIGNAL(updateProgress(int,int)), this, SLOT(doUpdateProgress(int,int))); connect(oximodule, SIGNAL(updateProgress(int,int)), this, SLOT(doUpdateProgress(int,int)));
oximodule->Open("import", p_profile); oximodule->Open("import", p_profile);
// Wait to start import streaming.. // Wait to start import streaming..
while (!oximodule->isImporting() && !oximodule->isAborted()) { while (!oximodule->isImporting() && !oximodule->isAborted()) {
QThread::msleep(100); // QThread::msleep(10);
QApplication::processEvents(); QApplication::processEvents();
if (!isVisible()) { if (!isVisible()) {
disconnect(oximodule, SIGNAL(updateProgress(int,int)), this, SLOT(doUpdateProgress(int,int))); disconnect(oximodule, SIGNAL(updateProgress(int,int)), this, SLOT(doUpdateProgress(int,int)));