mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-06 19:20:45 +00:00
CMS50F37 debug test 3
This commit is contained in:
parent
81dfc2fb50
commit
face1259ee
@ -35,9 +35,6 @@ using namespace std;
|
|||||||
|
|
||||||
extern QProgressBar *qprogress;
|
extern QProgressBar *qprogress;
|
||||||
|
|
||||||
static unsigned char cms50_sequence[] = { 0xa7, 0xa2, 0xa0, 0xb0, 0xac, 0xb3, 0xad, 0xa3, 0xab, 0xa4, 0xa5, 0xaf, 0xa7, 0xa2, 0xa6 };
|
|
||||||
int cms50_seqlength = sizeof(cms50_sequence);
|
|
||||||
|
|
||||||
CMS50F37Loader::CMS50F37Loader()
|
CMS50F37Loader::CMS50F37Loader()
|
||||||
{
|
{
|
||||||
m_type = MT_OXIMETER;
|
m_type = MT_OXIMETER;
|
||||||
@ -116,9 +113,22 @@ int CMS50F37Loader::Open(QString path)
|
|||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static unsigned char cms50_sequence[] = { 0xa7, 0xa2, 0xa0, 0xb0, 0xac, 0xb3, 0xad, 0xa3, 0xab, 0xa4, 0xa5, 0xaf, 0xa7, 0xa2, 0xa6 };
|
||||||
|
int cms50_seqlength = sizeof(cms50_sequence);
|
||||||
|
|
||||||
|
|
||||||
void CMS50F37Loader::processBytes(QByteArray bytes)
|
void CMS50F37Loader::processBytes(QByteArray bytes)
|
||||||
{
|
{
|
||||||
|
if (sequence < cms50_seqlength) {
|
||||||
|
unsigned char cmd = cms50_sequence[sequence];
|
||||||
|
|
||||||
|
if (cmd == 0xa5) { // DateTime
|
||||||
|
// > 7d 81 a5 80 80 80 80 80 80
|
||||||
|
// < 07 80 80 80 94 8e 88 92
|
||||||
|
// < 12 80 80 80 80 a3 bb 80
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
QStringList data;
|
QStringList data;
|
||||||
|
|
||||||
|
@ -45,6 +45,16 @@ MachineLoader * lookupLoader(Machine * m)
|
|||||||
return nullptr;
|
return nullptr;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
MachineLoader * lookupLoader(QString loaderName)
|
||||||
|
{
|
||||||
|
for (int i=0; i < m_loaders.size(); ++i) {
|
||||||
|
MachineLoader * loader = m_loaders.at(i);
|
||||||
|
if (loader->loaderName() == loaderName)
|
||||||
|
return loader;
|
||||||
|
}
|
||||||
|
return nullptr;
|
||||||
|
}
|
||||||
|
|
||||||
QHash<QString, QHash<QString, Machine *> > MachineList;
|
QHash<QString, QHash<QString, Machine *> > MachineList;
|
||||||
|
|
||||||
|
|
||||||
|
@ -148,6 +148,8 @@ struct ImportPath
|
|||||||
// Put in machine loader class as static??
|
// Put in machine loader class as static??
|
||||||
void RegisterLoader(MachineLoader *loader);
|
void RegisterLoader(MachineLoader *loader);
|
||||||
MachineLoader * lookupLoader(Machine * m);
|
MachineLoader * lookupLoader(Machine * m);
|
||||||
|
MachineLoader * lookupLoader(QString loaderName);
|
||||||
|
|
||||||
void DestroyLoaders();
|
void DestroyLoaders();
|
||||||
|
|
||||||
bool compressFile(QString inpath, QString outpath = "");
|
bool compressFile(QString inpath, QString outpath = "");
|
||||||
|
@ -22,6 +22,7 @@
|
|||||||
extern MainWindow * mainwin;
|
extern MainWindow * mainwin;
|
||||||
|
|
||||||
#include "SleepLib/loader_plugins/cms50_loader.h"
|
#include "SleepLib/loader_plugins/cms50_loader.h"
|
||||||
|
#include "SleepLib/loader_plugins/cms50f37_loader.h"
|
||||||
|
|
||||||
Qt::DayOfWeek firstDayOfWeekFromLocale();
|
Qt::DayOfWeek firstDayOfWeekFromLocale();
|
||||||
QList<SerialOximeter *> GetOxiLoaders();
|
QList<SerialOximeter *> GetOxiLoaders();
|
||||||
@ -155,7 +156,15 @@ SerialOximeter * OximeterImport::detectOximeter()
|
|||||||
|
|
||||||
ui->retryButton->setVisible(false);
|
ui->retryButton->setVisible(false);
|
||||||
|
|
||||||
QList<SerialOximeter *> loaders = GetOxiLoaders();
|
QList<SerialOximeter *> loaders; //= GetOxiLoaders();
|
||||||
|
|
||||||
|
if (p_profile->oxi->oximeterType() == "Contec CMS50D+/E/F") {
|
||||||
|
SerialOximeter * oxi = qobject_cast<SerialOximeter *>(lookupLoader(cms50_class_name));
|
||||||
|
loaders.push_back(oxi);
|
||||||
|
} else if (p_profile->oxi->oximeterType() == "Contec CMS50F v3.7+") {
|
||||||
|
SerialOximeter * oxi = qobject_cast<SerialOximeter *>(lookupLoader(cms50f37_class_name));
|
||||||
|
loaders.push_back(oxi);
|
||||||
|
} else return nullptr;
|
||||||
|
|
||||||
|
|
||||||
updateStatus(tr("Scanning for compatible oximeters"));
|
updateStatus(tr("Scanning for compatible oximeters"));
|
||||||
|
Loading…
Reference in New Issue
Block a user