CMS50F37 debug test 4

This commit is contained in:
Mark Watkins 2014-08-18 10:34:41 +10:00
parent face1259ee
commit 33f9062dd8
2 changed files with 31 additions and 0 deletions

View File

@ -58,6 +58,35 @@ CMS50F37Loader::~CMS50F37Loader()
{
}
bool CMS50F37Loader::openDevice()
{
if (port.isEmpty()) {
if (!scanDevice("",m_vendorID, m_productID))
return false;
}
serial.setPortName(port);
if (!serial.open(QSerialPort::ReadWrite))
return false;
// forward this stuff
// Set up serial port attributes
serial.setBaudRate(QSerialPort::Baud115200);
serial.setParity(QSerialPort::OddParity);
serial.setStopBits(QSerialPort::OneStop);
serial.setDataBits(QSerialPort::Data8);
serial.setFlowControl(QSerialPort::NoFlowControl);
m_streaming = true;
m_abort = false;
m_importing = false;
// connect relevant signals
connect(&serial,SIGNAL(readyRead()), this, SLOT(dataAvailable()));
return true;
}
bool CMS50F37Loader::Detect(const QString &path)
{
if (p_profile->oxi->oximeterType() == QString("Contec CMS50F v3.7+")) {

View File

@ -29,6 +29,8 @@ Q_OBJECT
virtual bool Detect(const QString &path);
virtual int Open(QString path);
virtual bool openDevice();
static void Register();