Yet more CMS50 fixes4

This commit is contained in:
Mark Watkins 2014-08-20 14:02:15 +10:00
parent 8a75a7c3e6
commit 17a3635711

View File

@ -41,6 +41,8 @@ CMS50F37Loader::CMS50F37Loader()
m_abort = false; m_abort = false;
m_streaming = false; m_streaming = false;
m_importing = false; m_importing = false;
started_reading = false;
imp_callbacks = 0; imp_callbacks = 0;
m_vendorID = 0x10c4; m_vendorID = 0x10c4;
@ -460,7 +462,7 @@ void CMS50F37Loader::processBytes(QByteArray bytes)
buf[i] = (buf[i] & 0x7f) | (msb & 0x01 ? 0x80 : 0); buf[i] = (buf[i] & 0x7f) | (msb & 0x01 ? 0x80 : 0);
} }
quint16 pi = buf[4] | buf[5] << 8; quint16 pi = *(quint16*)(&buf[4]);
pulse = buf[3]; pulse = buf[3];
quint8 spo2 = buf[2]; quint8 spo2 = buf[2];