2018-04-27 04:29:03 +00:00
|
|
|
|
/* SleepLib CMS50X Loader Header
|
2014-04-09 21:01:57 +00:00
|
|
|
|
*
|
2024-01-13 20:27:48 +00:00
|
|
|
|
* Copyright (c) 2019-2024 The OSCAR Team
|
2024-02-01 00:14:19 +00:00
|
|
|
|
* Copyright (C) 2011-2018 Mark Watkins
|
2014-04-09 21:01:57 +00:00
|
|
|
|
*
|
|
|
|
|
* This file is subject to the terms and conditions of the GNU General Public
|
2018-06-04 23:26:46 +00:00
|
|
|
|
* License. See the file COPYING in the main directory of the source code
|
|
|
|
|
* for more details. */
|
2011-06-26 08:30:44 +00:00
|
|
|
|
|
|
|
|
|
#ifndef CMS50LOADER_H
|
|
|
|
|
#define CMS50LOADER_H
|
|
|
|
|
|
2023-02-12 01:50:02 +00:00
|
|
|
|
#include <QElapsedTimer>
|
2014-05-25 16:20:33 +00:00
|
|
|
|
#include "SleepLib/serialoximeter.h"
|
2011-06-26 08:30:44 +00:00
|
|
|
|
|
2014-04-17 05:58:57 +00:00
|
|
|
|
const QString cms50_class_name = "CMS50";
|
|
|
|
|
const int cms50_data_version = 4;
|
2011-06-26 08:30:44 +00:00
|
|
|
|
|
2011-12-19 05:35:05 +00:00
|
|
|
|
|
|
|
|
|
/*! \class CMS50Loader
|
2014-08-17 23:29:30 +00:00
|
|
|
|
\brief Importer for CMS50 Oximeter
|
2011-12-19 05:35:05 +00:00
|
|
|
|
*/
|
2014-05-25 16:20:33 +00:00
|
|
|
|
class CMS50Loader : public SerialOximeter
|
2011-06-26 08:30:44 +00:00
|
|
|
|
{
|
2014-05-25 07:07:08 +00:00
|
|
|
|
Q_OBJECT
|
2014-04-17 05:58:57 +00:00
|
|
|
|
public:
|
2011-06-26 08:30:44 +00:00
|
|
|
|
|
|
|
|
|
|
2014-04-17 05:58:57 +00:00
|
|
|
|
CMS50Loader();
|
|
|
|
|
virtual ~CMS50Loader();
|
2014-04-26 09:54:08 +00:00
|
|
|
|
|
2014-05-20 11:51:47 +00:00
|
|
|
|
virtual bool Detect(const QString &path);
|
2018-04-27 04:29:03 +00:00
|
|
|
|
virtual int Open(const QString & path);
|
2014-05-20 11:51:47 +00:00
|
|
|
|
|
2014-04-17 05:58:57 +00:00
|
|
|
|
static void Register();
|
2011-06-26 08:30:44 +00:00
|
|
|
|
|
2014-04-17 05:58:57 +00:00
|
|
|
|
virtual int Version() { return cms50_data_version; }
|
2014-07-28 13:56:29 +00:00
|
|
|
|
virtual const QString &loaderName() { return cms50_class_name; }
|
2011-06-26 08:30:44 +00:00
|
|
|
|
|
2014-07-28 13:56:29 +00:00
|
|
|
|
virtual MachineInfo newInfo() {
|
2014-08-03 13:00:13 +00:00
|
|
|
|
return MachineInfo(MT_OXIMETER, 0, cms50_class_name, QObject::tr("Contec"), QObject::tr("CMS50"), QString(), QString(), QObject::tr("CMS50"), QDateTime::currentDateTime(), cms50_data_version);
|
2014-07-28 13:56:29 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// Machine *CreateMachine();
|
2011-06-26 08:30:44 +00:00
|
|
|
|
|
2014-05-25 07:07:08 +00:00
|
|
|
|
virtual void process();
|
|
|
|
|
|
2014-05-27 05:24:35 +00:00
|
|
|
|
virtual bool isStartTimeValid() { return !cms50dplus; }
|
|
|
|
|
|
2014-05-25 07:07:08 +00:00
|
|
|
|
protected slots:
|
|
|
|
|
// virtual void dataAvailable();
|
|
|
|
|
virtual void resetImportTimeout();
|
|
|
|
|
virtual void startImportTimeout();
|
2014-06-20 14:17:41 +00:00
|
|
|
|
virtual void shutdownPorts();
|
2014-05-25 07:07:08 +00:00
|
|
|
|
|
|
|
|
|
protected:
|
|
|
|
|
|
|
|
|
|
bool readSpoRFile(QString path);
|
|
|
|
|
virtual void processBytes(QByteArray bytes);
|
|
|
|
|
|
|
|
|
|
int doImportMode();
|
|
|
|
|
int doLiveMode();
|
|
|
|
|
|
|
|
|
|
virtual void killTimers();
|
|
|
|
|
|
|
|
|
|
// Switch CMS50D+ device to live streaming mode
|
|
|
|
|
virtual void resetDevice();
|
2011-06-26 08:30:44 +00:00
|
|
|
|
|
2014-05-25 07:07:08 +00:00
|
|
|
|
// Switch CMS50D+ device to record transmission mode
|
|
|
|
|
void requestData();
|
2011-06-26 08:30:44 +00:00
|
|
|
|
|
2014-04-17 05:58:57 +00:00
|
|
|
|
private:
|
2014-05-25 07:07:08 +00:00
|
|
|
|
EventList *PULSE;
|
|
|
|
|
EventList *SPO2;
|
|
|
|
|
|
2023-02-12 01:50:02 +00:00
|
|
|
|
QElapsedTimer m_time;
|
2014-05-25 07:07:08 +00:00
|
|
|
|
|
|
|
|
|
QByteArray buffer;
|
|
|
|
|
|
|
|
|
|
bool started_import;
|
|
|
|
|
bool finished_import;
|
|
|
|
|
bool started_reading;
|
|
|
|
|
bool cms50dplus;
|
|
|
|
|
|
|
|
|
|
int cb_reset,imp_callbacks;
|
|
|
|
|
|
|
|
|
|
int received_bytes;
|
|
|
|
|
|
|
|
|
|
int m_itemCnt;
|
|
|
|
|
int m_itemTotal;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
2011-06-26 08:30:44 +00:00
|
|
|
|
#endif // CMS50LOADER_H
|