From 79a2b1abc323185e5a5f35fa461b8fea5ae83424 Mon Sep 17 00:00:00 2001 From: Mark Watkins Date: Wed, 20 Jul 2011 13:43:41 +1000 Subject: [PATCH] CMS50 Importer Bug fixes --- oximetry.cpp | 58 ++++++++++++++++++++++++++++++++++------------------ 1 file changed, 38 insertions(+), 20 deletions(-) diff --git a/oximetry.cpp b/oximetry.cpp index d8ade45c..c080ae2b 100644 --- a/oximetry.cpp +++ b/oximetry.cpp @@ -1,5 +1,6 @@ #include #include +#include #include "oximetry.h" #include "ui_oximetry.h" @@ -410,6 +411,9 @@ void DumpBytes(int blocks, unsigned char * b,int len) // Move this code to CMS50 Importer?? void Oximetry::on_ImportButton_clicked() { + QMessageBox msgbox(QMessageBox::Information,"Importing","Please Wait",QMessageBox::NoButton,this); + msgbox.show(); + Machine *mach=profile->GetMachine(MT_OXIMETER); if (!mach) { CMS50Loader *l=dynamic_cast(GetLoader("CMS50")); @@ -419,14 +423,15 @@ void Oximetry::on_ImportButton_clicked() qDebug() << "Needed to create Oximeter device"; } - unsigned char b1[2]; - unsigned char b2[3]; - unsigned char rb[0x20]; - b1[0]=0xf5; - b1[1]=0xf5; - b2[0]=0xf6; - b2[1]=0xf6; - b2[2]=0xf6; + const int rb_size=0x200; + static unsigned char b1[2]={0xf5,0xf5}; + static unsigned char b2[3]={0xf6,0xf6,0xf6}; + static unsigned char rb[rb_size]; + //b1[0]=0xf5; + //b1[1]=0xf5; + //b2[0]=0xf6; + //b2[1]=0xf6; + //b2[2]=0xf6; unsigned char * buffer=NULL; ui->SerialPortsCombo->setEnabled(false); ui->RunButton->setText("&Start"); @@ -472,26 +477,34 @@ void Oximetry::on_ImportButton_clicked() qprogress->show(); int fails=0; while (!done) { - - //port->setRts(true); if (port->write((char *)b1,2)==-1) { qDebug() << "Couldn't write 2 lousy bytes to CMS50"; } - //usleep(500); - // port->setRts(false); - //qDebug() << "Available " << port->bytesAvailable(); blocks=0; int startpos=0; unsigned int length=0; + int dr; + int ec; do { bool fnd=false; - res=port->read((char *)rb,0x20); - DumpBytes(blocks,rb,res); + dr=0; + ec=0; + do { + res=port->read((char *)rb,rb_size); + DumpBytes(blocks,rb,res); + if (blocks>0) break; + if (res<=0) ec++; + dr+=res; + } while ((res<=5) && (dr<0x200) && (ec<5)); + + //if (res>5) DumpBytes(blocks,rb,res); + done=false; if (blocks==0) { - for (int i=0;i5) + for (int i=0;ihide(); ui->SerialPortsCombo->setEnabled(true); qstatus->setText("Ready");