mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 18:50:44 +00:00
CMS50 Serial import reliability fixes
This commit is contained in:
parent
c2ea072340
commit
c59a377e89
@ -80,6 +80,7 @@ int CMS50Loader::Open(QString path, Profile *profile)
|
||||
started_import = false;
|
||||
started_reading = false;
|
||||
finished_import = false;
|
||||
setStatus(NEUTRAL);
|
||||
|
||||
imp_callbacks = 0;
|
||||
cb_reset = 0;
|
||||
@ -93,12 +94,26 @@ int CMS50Loader::Open(QString path, Profile *profile)
|
||||
// Cheating using path for two serial oximetry modes
|
||||
|
||||
if (path.compare("import") == 0) {
|
||||
for (int i=0; i<5; ++i) {
|
||||
resetDevice();
|
||||
serial.flush();
|
||||
// QThread::msleep(50);
|
||||
QApplication::processEvents();
|
||||
}
|
||||
serial.clear();
|
||||
|
||||
setStatus(IMPORTING);
|
||||
|
||||
startTimer.stop();
|
||||
startImportTimeout();
|
||||
return 1;
|
||||
} else if (path.compare("live") == 0) {
|
||||
for (int i=0; i<5; ++i) {
|
||||
resetDevice();
|
||||
serial.flush();
|
||||
QApplication::processEvents();
|
||||
}
|
||||
serial.clear();
|
||||
|
||||
m_startTime = QDateTime::currentDateTime();
|
||||
|
||||
@ -147,7 +162,8 @@ void CMS50Loader::processBytes(QByteArray bytes)
|
||||
idx = doLiveMode();
|
||||
break;
|
||||
default:
|
||||
qDebug() << "Device mode not supported by" << ClassName();
|
||||
;
|
||||
// qDebug() << "Device mode not supported by" << ClassName();
|
||||
}
|
||||
|
||||
if (idx >= available) {
|
||||
@ -169,7 +185,7 @@ void CMS50Loader::processBytes(QByteArray bytes)
|
||||
int CMS50Loader::doImportMode()
|
||||
{
|
||||
int available = buffer.size();
|
||||
Q_ASSERT(!finished_import);
|
||||
// Q_ASSERT(!finished_import);
|
||||
int hour,minute;
|
||||
int idx = 0;
|
||||
while (idx < available) {
|
||||
@ -179,8 +195,7 @@ int CMS50Loader::doImportMode()
|
||||
if (c != 0xf2) { // If not started, continue scanning for a valie header.
|
||||
idx++;
|
||||
continue;
|
||||
} else {
|
||||
|
||||
}
|
||||
received_bytes=0;
|
||||
|
||||
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
|
||||
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;
|
||||
} 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
|
||||
if (c == 0xf2) { // Header is repeated 3 times, ignore the extras
|
||||
|
||||
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
|
||||
if ((c & 0xf0) == 0xf0) { // Data trio
|
||||
started_reading=true; // Sometimes errornous crap is sent after data rec header
|
||||
|
||||
// Recording import
|
||||
@ -252,7 +283,7 @@ int CMS50Loader::doImportMode()
|
||||
// TODO: Store the data to the session
|
||||
|
||||
m_itemCnt++;
|
||||
m_itemCnt=m_itemCnt % m_itemTotal;
|
||||
m_itemCnt = m_itemCnt % m_itemTotal;
|
||||
emit updateProgress(m_itemCnt, m_itemTotal);
|
||||
|
||||
idx += 3;
|
||||
@ -262,13 +293,13 @@ int CMS50Loader::doImportMode()
|
||||
//Completed
|
||||
finished_import = true;
|
||||
killTimers();
|
||||
closeDevice();
|
||||
m_importing = false;
|
||||
m_status = NEUTRAL;
|
||||
emit importComplete(this);
|
||||
resetTimer.singleShot(2000, this, SLOT(shutdownPorts()));
|
||||
return available;
|
||||
imp_callbacks = cb_reset = 0;
|
||||
return available;
|
||||
// imp_callbacks = cb_reset = 0;
|
||||
// return available;
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -314,10 +345,14 @@ void CMS50Loader::resetDevice() // Switch CMS50D+ device to live streaming mode
|
||||
{
|
||||
//qDebug() << "Sending reset code to CMS50 device";
|
||||
//m_port->flush();
|
||||
|
||||
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";
|
||||
}
|
||||
|
||||
QApplication::processEvents();
|
||||
}
|
||||
|
||||
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};
|
||||
|
||||
//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";
|
||||
}
|
||||
QApplication::processEvents();
|
||||
}
|
||||
|
||||
void CMS50Loader::killTimers()
|
||||
@ -397,10 +433,14 @@ void CMS50Loader::resetImportTimeout()
|
||||
// Turn back on live streaming so the end of capture can be dealt with
|
||||
resetTimer.stop();
|
||||
|
||||
serial.flush();
|
||||
resetDevice(); // Send Reset to CMS50D+
|
||||
serial.flush();
|
||||
QThread::msleep(200);
|
||||
resetDevice(); // Send Reset to CMS50D+
|
||||
serial.flush();
|
||||
serial.clear();
|
||||
//started_import = false;
|
||||
finished_import = true;
|
||||
// finished_import = true;
|
||||
//m_streaming=false;
|
||||
|
||||
//closeDevice();
|
||||
@ -411,7 +451,12 @@ void CMS50Loader::resetImportTimeout()
|
||||
qDebug() << "Should CMS50 resetImportTimeout reach here?";
|
||||
// else what???
|
||||
}
|
||||
cb_reset=imp_callbacks;
|
||||
cb_reset = imp_callbacks;
|
||||
}
|
||||
|
||||
void CMS50Loader::shutdownPorts()
|
||||
{
|
||||
closeDevice();
|
||||
}
|
||||
|
||||
|
||||
|
@ -48,6 +48,7 @@ protected slots:
|
||||
// virtual void dataAvailable();
|
||||
virtual void resetImportTimeout();
|
||||
virtual void startImportTimeout();
|
||||
virtual void shutdownPorts();
|
||||
|
||||
protected:
|
||||
|
||||
|
@ -89,6 +89,7 @@ protected slots:
|
||||
virtual void startImportTimeout() {}
|
||||
|
||||
virtual void stopRecording();
|
||||
virtual void shutdownPorts() {}
|
||||
// virtual void abortTask();
|
||||
|
||||
protected:
|
||||
|
@ -116,6 +116,7 @@ void LogThread::run()
|
||||
running = true;
|
||||
do {
|
||||
strlock.lock();
|
||||
int r = receivers(SIGNAL(outputLog(QString())));
|
||||
while (!buffer.isEmpty()) {
|
||||
QString msg = buffer.takeFirst();
|
||||
fprintf(stderr, "%s\n", msg.toLocal8Bit().data());
|
||||
|
@ -203,14 +203,13 @@ void OximeterImport::on_directImportButton_clicked()
|
||||
ui->connectLabel->setText("<h2>"+tr("Select upload option on %1").arg(oximodule->ClassName())+"</h2>");
|
||||
updateStatus(tr("Waiting for you to start the upload process..."));
|
||||
|
||||
|
||||
connect(oximodule, SIGNAL(updateProgress(int,int)), this, SLOT(doUpdateProgress(int,int)));
|
||||
|
||||
oximodule->Open("import", p_profile);
|
||||
|
||||
// Wait to start import streaming..
|
||||
while (!oximodule->isImporting() && !oximodule->isAborted()) {
|
||||
QThread::msleep(100);
|
||||
// QThread::msleep(10);
|
||||
QApplication::processEvents();
|
||||
if (!isVisible()) {
|
||||
disconnect(oximodule, SIGNAL(updateProgress(int,int)), this, SLOT(doUpdateProgress(int,int)));
|
||||
|
Loading…
Reference in New Issue
Block a user