mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-06 11:10:44 +00:00
add debug code from other repo - DON'T USE that one!
This commit is contained in:
parent
7c367b5f01
commit
552d1aef95
@ -65,7 +65,8 @@ int MD300W1Loader::Open(QString path)
|
|||||||
{
|
{
|
||||||
// Only one active Oximeter module at a time, set in preferences
|
// Only one active Oximeter module at a time, set in preferences
|
||||||
|
|
||||||
qDebug() << "MD300W1 Loader opening " << path;
|
qDebug() << "MD300W1 Loader opening " << path;
|
||||||
|
|
||||||
m_itemCnt = 0;
|
m_itemCnt = 0;
|
||||||
m_itemTotal = 0;
|
m_itemTotal = 0;
|
||||||
|
|
||||||
@ -158,13 +159,16 @@ void MD300W1Loader::resetImportTimeout()
|
|||||||
bool MD300W1Loader::readDATFile(QString path)
|
bool MD300W1Loader::readDATFile(QString path)
|
||||||
{
|
{
|
||||||
QFile file(path);
|
QFile file(path);
|
||||||
|
|
||||||
|
qDebug() << "MD300W Loader attempting to read " << path;
|
||||||
|
|
||||||
if (!file.exists()) {
|
if (!file.exists()) {
|
||||||
qDebug() << "File does not exist: " << path;
|
qDebug() << "File does not exist: " << path;
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!file.open(QFile::ReadOnly)) {
|
if (!file.open(QFile::ReadOnly)) {
|
||||||
qDebug() << "Can't open file R/O: " << path;
|
qDebug() << "Can't open file R/O: " << path;
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -194,7 +198,7 @@ bool MD300W1Loader::readDATFile(QString path)
|
|||||||
if (datetime.date().year() < 2000) datetime = datetime.addYears(100);
|
if (datetime.date().year() < 2000) datetime = datetime.addYears(100);
|
||||||
ts = datetime.toTime_t();
|
ts = datetime.toTime_t();
|
||||||
gap = ts - lasttime;
|
gap = ts - lasttime;
|
||||||
if (gap > 1) {
|
if (gap > 1) { // always true for first record, b/c time started on 1 Jan 1970
|
||||||
if (gap < 360) {
|
if (gap < 360) {
|
||||||
// Less than 5 minutes? Merge session
|
// Less than 5 minutes? Merge session
|
||||||
gap--;
|
gap--;
|
||||||
@ -203,7 +207,7 @@ bool MD300W1Loader::readDATFile(QString path)
|
|||||||
oxirec->append(OxiRecord(0,0));
|
oxirec->append(OxiRecord(0,0));
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
// Create a new session
|
// Create a new session, always for first record
|
||||||
qDebug() << "Create session for " << datestr;
|
qDebug() << "Create session for " << datestr;
|
||||||
qDebug() << "Create session for " << datetime.toString("yyyy.MM.dd HH:mm:ss");
|
qDebug() << "Create session for " << datetime.toString("yyyy.MM.dd HH:mm:ss");
|
||||||
oxirec = new QVector<OxiRecord>;
|
oxirec = new QVector<OxiRecord>;
|
||||||
|
Loading…
Reference in New Issue
Block a user