mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 02:30:44 +00:00
Get CMS50IW model string properly
This commit is contained in:
parent
c250ec40aa
commit
55390d9831
@ -215,14 +215,16 @@ QString CMS50F37Loader::getModel()
|
||||
{
|
||||
if (!model.isEmpty()) return model;
|
||||
|
||||
modelsegments = 0;
|
||||
sendCommand(COMMAND_GET_OXIMETER_MODEL);
|
||||
|
||||
QTime time;
|
||||
time.start();
|
||||
do {
|
||||
QApplication::processEvents();
|
||||
} while (model.isEmpty() && (time.elapsed() < TIMEOUT));
|
||||
} while ((modelsegments < 2) && (time.elapsed() < TIMEOUT));
|
||||
|
||||
// Give a little more time for the second one..
|
||||
QThread::msleep(100);
|
||||
QApplication::processEvents();
|
||||
|
||||
@ -368,9 +370,12 @@ void CMS50F37Loader::processBytes(QByteArray bytes)
|
||||
data = buffer.at(idx+1);
|
||||
if (data == 0) {
|
||||
model = QString(buffer.mid(idx+3, 6));
|
||||
qDebug() << "Model:" << model;
|
||||
modelsegments++;
|
||||
} else {
|
||||
qDebug() << "Extra Model:" << data;
|
||||
QString extra = QString(buffer.mid(idx+3, 6));
|
||||
model += extra.trimmed();
|
||||
modelsegments++;
|
||||
qDebug() << "Model:" << model;
|
||||
}
|
||||
break;
|
||||
case 0x03: // Vendor string
|
||||
|
@ -146,6 +146,8 @@ protected:
|
||||
|
||||
int timectr;
|
||||
|
||||
int modelsegments;
|
||||
|
||||
};
|
||||
|
||||
|
||||
|
@ -25,7 +25,7 @@ QList<SerialOximeter *> GetOxiLoaders()
|
||||
|
||||
return oxiloaders;
|
||||
}
|
||||
bool SerialOximeter::scanDevice(QString keyword,quint16 vendor_id, quint16 product_id)
|
||||
bool SerialOximeter::scanDevice(QString keyword, quint16 vendor_id, quint16 product_id)
|
||||
{
|
||||
static bool dumponce = true;
|
||||
QStringList ports;
|
||||
|
Loading…
Reference in New Issue
Block a user