mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 18:50:44 +00:00
CMS50F37 debug test 5
This commit is contained in:
parent
33f9062dd8
commit
50e9a88a79
@ -123,11 +123,11 @@ int CMS50F37Loader::Open(QString path)
|
|||||||
// 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) {
|
||||||
serial.clear();
|
//serial.clear();
|
||||||
|
|
||||||
sequence = 0;
|
sequence = 0;
|
||||||
nextCommand();
|
nextCommand();
|
||||||
setStatus(DETECTING);
|
setStatus(IMPORTING);
|
||||||
|
|
||||||
return 1;
|
return 1;
|
||||||
} else if (path.compare("live") == 0) {
|
} else if (path.compare("live") == 0) {
|
||||||
@ -173,7 +173,7 @@ void CMS50F37Loader::processBytes(QByteArray bytes)
|
|||||||
qDebug() << "Read:" << data.join(",");
|
qDebug() << "Read:" << data.join(",");
|
||||||
}
|
}
|
||||||
|
|
||||||
m_status = NEUTRAL;
|
m_status = IMPORTING;
|
||||||
}
|
}
|
||||||
|
|
||||||
int CMS50F37Loader::doImportMode()
|
int CMS50F37Loader::doImportMode()
|
||||||
@ -223,10 +223,10 @@ void CMS50F37Loader::sendCommand(unsigned char c)
|
|||||||
cmd[2] = c;
|
cmd[2] = c;
|
||||||
|
|
||||||
QString out;
|
QString out;
|
||||||
for (int i=0;i < 8;i++) out += QString().sprintf("%02X ",cmd[i]);
|
for (int i=0;i < 9;i++) out += QString().sprintf("%02X ",cmd[i]);
|
||||||
qDebug() << "Write:" << out;
|
qDebug() << "Write:" << out;
|
||||||
|
|
||||||
if (serial.write((char *)cmd,8) == -1) {
|
if (serial.write((char *)cmd, 9) == -1) {
|
||||||
qDebug() << "Couldn't write data reset bytes to CMS50";
|
qDebug() << "Couldn't write data reset bytes to CMS50";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user