mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 02:30:44 +00:00
Make right sidebar hiding persistant, some setup for oximeter clock sync
This commit is contained in:
parent
cfbf876fbd
commit
234f2001a3
@ -291,7 +291,6 @@ QDateTime CMS50F37Loader::getDateTime(int session)
|
||||
}
|
||||
|
||||
|
||||
|
||||
void CMS50F37Loader::processBytes(QByteArray bytes)
|
||||
{
|
||||
static quint8 resimport = 0;
|
||||
@ -299,7 +298,7 @@ void CMS50F37Loader::processBytes(QByteArray bytes)
|
||||
|
||||
QString tmpstr;
|
||||
|
||||
int lengths[32] = { 0, 0, 9, 9, 0, 9, 4, 8, 8, 6, 4, 0, 2, 0, 3, 8, 3, 9, 8, 9, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 };
|
||||
int lengths[32] = { 0, 0, 9, 9, 0, 9, 4, 8, 8, 6, 4, 4, 2, 0, 3, 8, 3, 9, 8, 9, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 };
|
||||
|
||||
buffer.append(bytes);
|
||||
int size = buffer.size();
|
||||
@ -395,6 +394,10 @@ void CMS50F37Loader::processBytes(QByteArray bytes)
|
||||
session_count = buffer.at(idx+3);
|
||||
break;
|
||||
|
||||
case 0x0b:
|
||||
timectr++;
|
||||
break;
|
||||
|
||||
// COMMAND_CMS50_HELLO1 && COMMAND_CMS50_HELLO2
|
||||
case 0xc: // a7 & a2 // responds with: c,80
|
||||
data = buffer.at(idx+1);
|
||||
@ -572,6 +575,49 @@ void CMS50F37Loader::sendCommand(quint8 c, quint8 c2)
|
||||
}
|
||||
}
|
||||
|
||||
void CMS50F37Loader::syncClock()
|
||||
{
|
||||
QDate date = QDate::currentDate();
|
||||
int year = date.year();
|
||||
quint8 yh = year / 100;
|
||||
quint8 yl = year % 100;
|
||||
quint8 mon = date.month();
|
||||
quint8 day = date.day();
|
||||
quint8 wd = date.dayOfWeek() % 7;
|
||||
|
||||
quint8 datecmd[] = { 0x7d, 0xb2, yh | 0x80, yl |0x80, mon|0x80, day|0x80, wd|0x80, 0x80, 0x80 };
|
||||
|
||||
timectr = 0;
|
||||
if (serial.write((char *)datecmd, 9) == -1) {
|
||||
qDebug() << "Couldn't write data reset bytes to CMS50";
|
||||
}
|
||||
|
||||
QTime time;
|
||||
time.start();
|
||||
do {
|
||||
QApplication::processEvents();
|
||||
} while ((timectr == 0) && (time.elapsed() < TIMEOUT));
|
||||
|
||||
|
||||
QTime ctime = QTime::currentTime();
|
||||
quint8 h = ctime.hour();
|
||||
quint8 m = ctime.minute();
|
||||
quint8 s = ctime.second();
|
||||
|
||||
quint8 timecmd[] = { 0x7d, 0xb2, h | 0x80, m |0x80, s|0x80, 0x80, 0x80, 0x80, 0x80 };
|
||||
|
||||
timectr = 0;
|
||||
if (serial.write((char *)timecmd, 9) == -1) {
|
||||
qDebug() << "Couldn't write data reset bytes to CMS50";
|
||||
}
|
||||
|
||||
time.start();
|
||||
do {
|
||||
QApplication::processEvents();
|
||||
} while ((timectr == 0) && (time.elapsed() < TIMEOUT));
|
||||
}
|
||||
|
||||
|
||||
void CMS50F37Loader::nextCommand()
|
||||
{
|
||||
if (++sequence < cms50_seqlength) {
|
||||
|
@ -58,6 +58,8 @@ Q_OBJECT
|
||||
virtual int getSessionCount();
|
||||
virtual int getOximeterInfo();
|
||||
|
||||
virtual void syncClock();
|
||||
|
||||
virtual void setDuration(int d) { duration=d; }
|
||||
|
||||
virtual bool commandDriven() { return true; }
|
||||
@ -65,6 +67,7 @@ Q_OBJECT
|
||||
|
||||
virtual void getSessionData(int session);
|
||||
|
||||
|
||||
// Switch device to record transmission mode
|
||||
void requestData();
|
||||
|
||||
@ -136,6 +139,8 @@ protected:
|
||||
int duration_divisor;
|
||||
int selected_session;
|
||||
|
||||
int timectr;
|
||||
|
||||
};
|
||||
|
||||
|
||||
|
@ -1759,8 +1759,6 @@ bool PRS1Import::ParseEvents()
|
||||
// session->m_gain.erase(session->m_gain.find(CPAP_Pressure));
|
||||
|
||||
} else {
|
||||
session->setSummaryOnly(true);
|
||||
|
||||
if (!session->settings.contains(CPAP_Pressure) && !session->settings.contains(CPAP_PressureMin)) {
|
||||
session->settings[CPAP_BrokenSummary] = true;
|
||||
|
||||
|
@ -246,6 +246,7 @@ const QString STR_UI_DST = "DST";
|
||||
// OxiSettings Strings
|
||||
const QString STR_OS_EnableOximetry = "EnableOximetry";
|
||||
const QString STR_OS_SyncOximetry = "SyncOximetry";
|
||||
const QString STR_OS_SyncOximeterClock = "SyncOximeterClock";
|
||||
const QString STR_OS_OximeterType = "OximeterType";
|
||||
const QString STR_OS_OxiDiscardThreshold = "OxiDiscardThreshold";
|
||||
const QString STR_OS_SPO2DropDuration = "SPO2DropDuration";
|
||||
@ -312,6 +313,7 @@ const QString STR_AS_GraphTooltips = "GraphTooltips";
|
||||
const QString STR_AS_LineThickness = "LineThickness";
|
||||
const QString STR_AS_LineCursorMode = "LineCursorMode";
|
||||
const QString STR_AS_CalendarVisible = "CalendarVisible";
|
||||
const QString STR_AS_RightSidebarVisible = "RightSidebarVisible";
|
||||
|
||||
// UserSettings Strings
|
||||
const QString STR_US_UnitSystem = "UnitSystem";
|
||||
@ -465,6 +467,7 @@ class OxiSettings : public ProfileSettings
|
||||
{
|
||||
initPref(STR_OS_EnableOximetry, false);
|
||||
initPref(STR_OS_SyncOximetry, true);
|
||||
initPref(STR_OS_SyncOximeterClock, true);
|
||||
initPref(STR_OS_OximeterType, "CMS50");
|
||||
initPref(STR_OS_OxiDiscardThreshold, 0.0);
|
||||
initPref(STR_OS_SPO2DropDuration, 8.0);
|
||||
@ -476,6 +479,7 @@ class OxiSettings : public ProfileSettings
|
||||
|
||||
bool oximetryEnabled() const { return getPref(STR_OS_EnableOximetry).toBool(); }
|
||||
bool syncOximetry() const { return getPref(STR_OS_SyncOximetry).toBool(); }
|
||||
bool syncOximeterClock() const { return getPref(STR_OS_SyncOximeterClock).toBool(); }
|
||||
QString oximeterType() const { return getPref(STR_OS_OximeterType).toString(); }
|
||||
double oxiDiscardThreshold() const { return getPref(STR_OS_OxiDiscardThreshold).toDouble(); }
|
||||
double spO2DropDuration() const { return getPref(STR_OS_SPO2DropDuration).toDouble(); }
|
||||
@ -487,6 +491,7 @@ class OxiSettings : public ProfileSettings
|
||||
|
||||
void setOximetryEnabled(bool enabled) { setPref(STR_OS_EnableOximetry, enabled); }
|
||||
void setSyncOximetry(bool synced) { setPref(STR_OS_SyncOximetry, synced); }
|
||||
void setSyncOximeterClock(bool synced) { setPref(STR_OS_SyncOximeterClock, synced); }
|
||||
void setOximeterType(QString oxitype) { setPref(STR_OS_OximeterType, oxitype); }
|
||||
void setOxiDiscardThreshold(double thresh) { setPref(STR_OS_OxiDiscardThreshold, thresh); }
|
||||
void setSpO2DropDuration(double duration) { setPref(STR_OS_SPO2DropDuration, duration); }
|
||||
@ -677,6 +682,7 @@ class AppearanceSettings : public ProfileSettings
|
||||
initPref(STR_AS_LineThickness, 1.0);
|
||||
initPref(STR_AS_LineCursorMode, false);
|
||||
initPref(STR_AS_CalendarVisible, true);
|
||||
initPref(STR_AS_RightSidebarVisible, true);
|
||||
}
|
||||
|
||||
//! \brief Returns the normal (unscaled) height of a graph
|
||||
@ -701,6 +707,8 @@ class AppearanceSettings : public ProfileSettings
|
||||
bool lineCursorMode() const { return getPref(STR_AS_LineCursorMode).toBool(); }
|
||||
//! \brief Whether to show the calendar
|
||||
bool calendarVisible() const { return getPref(STR_AS_CalendarVisible).toBool(); }
|
||||
//! \brief Whether to show the right sidebar
|
||||
bool rightSidebarVisible() const { return getPref(STR_AS_RightSidebarVisible).toBool(); }
|
||||
|
||||
|
||||
//! \brief Returns the type of overlay flags (which are displayed over the Flow Waveform)
|
||||
@ -740,6 +748,8 @@ class AppearanceSettings : public ProfileSettings
|
||||
void setLineCursorMode(bool b) { setPref(STR_AS_LineCursorMode, b); }
|
||||
//! \brief Sets whether to display the (Daily View) Calendar
|
||||
void setCalendarVisible(bool b) { setPref(STR_AS_CalendarVisible, b); }
|
||||
//! \brief Sets whether to display the right sidebar
|
||||
void setRightSidebarVisible(bool b) { setPref(STR_AS_RightSidebarVisible, b); }
|
||||
};
|
||||
|
||||
/*! \class UserSettings
|
||||
|
@ -56,6 +56,7 @@ public:
|
||||
virtual QString getVendor() { return QString(); }
|
||||
virtual QString getDeviceString() { return QString(); }
|
||||
virtual void getSessionData(int session) { Q_UNUSED(session); }
|
||||
virtual void syncClock() {}
|
||||
|
||||
|
||||
virtual bool commandDriven() { return false; }
|
||||
|
@ -4,16 +4,17 @@
|
||||
|
||||
<p><h2><b>Release Notes</b></h2></p>
|
||||
<p>Greetings!</p>
|
||||
<p>Here is a new and hopefully improved SleepyHead build.</p>
|
||||
<p>Here is a definitely new and improved SleepyHead build :)</p>
|
||||
|
||||
<p>I'm pleased to report that CMS50i and CMS50f oximeters finally work with SleepyHead, a huge thanks to François Revol and Michael Masterson for there assistance with this.</p>
|
||||
<p>Some of you German users will be pleased to learn that the (Pulox) PO-200, PO-300, and PO-400 oximeters are secretely Contecs CMS50's in disguise, (D+, E and F respectively)..</p>
|
||||
<p>German users will be pleased to learn that the (Pulox) PO-200, PO-300, and PO-400 oximeters are secretely Contecs CMS50's in disguise, (D+, E and F respectively)..</p>
|
||||
|
||||
<p>This build features recent code that modified the internal "Day" objects, so they can hold sessions from multiple machines.. which is a pretty significant change in how data is stored in memory.
|
||||
This was done so Oximeter, CPAP, sleep stage, positional, etc.. Session's don't have to be handled individually.. Now for instance, I can compare oximetery and CPAP data in the same object,
|
||||
leading to much more powerful calculation and graphing possibilities. Nerdy stuff end users won't know about, but you will. ;)</p>
|
||||
<p>You will likely need to REBUILD YOUR CPAP MACHINE DATABASE from the Data menu to get the benefit of the latest goodies. This rebuild will be automatic in the final 0.9.7 public builds (well, they will face a forced reimport unless they are ResMed users, but anyway :/)</p>
|
||||
|
||||
<p>Check out the new right click menu over the titlebar/yAxis area, you will find it useful.. Remember to click outside of the popup menu to make it go away.. Design feature. :P</p>
|
||||
<p>I'd very much love to hear your comments on the latest changes, some of this is stuff I've been planning for ages.</p>
|
||||
<p><b>Sleep Well, and good luck!</b></p>
|
||||
<p><b><i>JediMark</i></b></p>
|
||||
@ -21,6 +22,8 @@ leading to much more powerful calculation and graphing possibilities. Nerdy stuf
|
||||
<br/>
|
||||
<b>New features & bug fixes in v0.9.7</b><br/>
|
||||
<list>
|
||||
<li>New Feature: Added toggle-able linechart Event-flag overlays</li>
|
||||
<li>New Feature: Added toggle-able Graph Plots when multiple plots present</li>
|
||||
<li>New Feature: Added toggle-able Dotted lines for each graph for various purposes</li>
|
||||
<li>New Feature: Added right-click popup menu in Y-Axis and title graph area</li>
|
||||
<li>Support for importing from CMS50F and CMS50I via cable</i>
|
||||
|
@ -280,6 +280,10 @@ MainWindow::MainWindow(QWidget *parent) :
|
||||
}
|
||||
|
||||
ui->toolBox->setCurrentIndex(0);
|
||||
bool b = p_profile->appearance->rightSidebarVisible();
|
||||
ui->action_Sidebar_Toggle->setChecked(b);
|
||||
ui->toolBox->setVisible(b);
|
||||
|
||||
daily->graphView()->redraw();
|
||||
|
||||
if (p_profile->cpap->AHIWindow() < 30.0) {
|
||||
@ -2156,6 +2160,7 @@ void MainWindow::keyPressEvent(QKeyEvent *event)
|
||||
void MainWindow::on_action_Sidebar_Toggle_toggled(bool visible)
|
||||
{
|
||||
ui->toolBox->setVisible(visible);
|
||||
p_profile->appearance->setRightSidebarVisible(visible);
|
||||
}
|
||||
|
||||
void MainWindow::on_recordsBox_linkClicked(const QUrl &linkurl)
|
||||
|
@ -234,6 +234,7 @@ PreferencesDialog::PreferencesDialog(QWidget *parent, Profile *_profile) :
|
||||
ui->overlayFlagsCombo->setCurrentIndex(profile->appearance->overlayType());
|
||||
ui->overviewLinecharts->setCurrentIndex(profile->appearance->overviewLinechartMode());
|
||||
|
||||
ui->syncOximeterClock->setChecked(profile->oxi->syncOximeterClock());
|
||||
ui->oximetrySync->setChecked(profile->oxi->syncOximetry());
|
||||
ui->oximetrySync->setVisible(false);
|
||||
int ot = ui->oximetryType->findText(profile->oxi->oximeterType(), Qt::MatchExactly);
|
||||
@ -547,6 +548,7 @@ bool PreferencesDialog::Save()
|
||||
}
|
||||
|
||||
profile->oxi->setOximeterType(ui->oximetryType->currentText());
|
||||
profile->oxi->setSyncOximeterClock(ui->syncOximeterClock->isChecked());
|
||||
|
||||
profile->oxi->setSpO2DropPercentage(ui->spo2Drop->value());
|
||||
profile->oxi->setSpO2DropDuration(ui->spo2DropTime->value());
|
||||
|
@ -1361,7 +1361,7 @@ Try to sync it to your PC's clock (which should be synced to a timeserver)</stri
|
||||
<property name="spacing">
|
||||
<number>5</number>
|
||||
</property>
|
||||
<item row="3" column="0" colspan="2">
|
||||
<item row="4" column="0" colspan="2">
|
||||
<widget class="QGroupBox" name="groupBox_4">
|
||||
<property name="title">
|
||||
<string>Flag rapid changes in oximetry stats</string>
|
||||
@ -1454,86 +1454,7 @@ Try to sync it to your PC's clock (which should be synced to a timeserver)</stri
|
||||
</layout>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="1" column="0" colspan="2">
|
||||
<widget class="QCheckBox" name="oximetrySync">
|
||||
<property name="sizePolicy">
|
||||
<sizepolicy hsizetype="Fixed" vsizetype="Fixed">
|
||||
<horstretch>0</horstretch>
|
||||
<verstretch>0</verstretch>
|
||||
</sizepolicy>
|
||||
</property>
|
||||
<property name="toolTip">
|
||||
<string>Tries to forces the oximetry data to link with CPAP when possible.</string>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>Link Oximetry and CPAP graphs</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="0" column="1">
|
||||
<widget class="QComboBox" name="oximetryType">
|
||||
<property name="sizePolicy">
|
||||
<sizepolicy hsizetype="Minimum" vsizetype="Fixed">
|
||||
<horstretch>0</horstretch>
|
||||
<verstretch>0</verstretch>
|
||||
</sizepolicy>
|
||||
</property>
|
||||
<item>
|
||||
<property name="text">
|
||||
<string>Contec CMS50D+/E/F</string>
|
||||
</property>
|
||||
</item>
|
||||
<item>
|
||||
<property name="text">
|
||||
<string>Contec CMS50F v3.7+</string>
|
||||
</property>
|
||||
</item>
|
||||
<item>
|
||||
<property name="text">
|
||||
<string>ChoiceMMed MD300W1</string>
|
||||
</property>
|
||||
</item>
|
||||
<item>
|
||||
<property name="text">
|
||||
<string>ResMed S9 Oximeter Module</string>
|
||||
</property>
|
||||
</item>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="5" column="0" colspan="2">
|
||||
<spacer name="verticalSpacer_6">
|
||||
<property name="orientation">
|
||||
<enum>Qt::Vertical</enum>
|
||||
</property>
|
||||
<property name="sizeHint" stdset="0">
|
||||
<size>
|
||||
<width>20</width>
|
||||
<height>40</height>
|
||||
</size>
|
||||
</property>
|
||||
</spacer>
|
||||
</item>
|
||||
<item row="0" column="0">
|
||||
<widget class="QLabel" name="label_20">
|
||||
<property name="sizePolicy">
|
||||
<sizepolicy hsizetype="Fixed" vsizetype="Preferred">
|
||||
<horstretch>0</horstretch>
|
||||
<verstretch>0</verstretch>
|
||||
</sizepolicy>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>Type</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="2" column="0" colspan="2">
|
||||
<widget class="Line" name="line_4">
|
||||
<property name="orientation">
|
||||
<enum>Qt::Horizontal</enum>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="4" column="0" colspan="2">
|
||||
<widget class="QGroupBox" name="groupBox_3">
|
||||
<property name="title">
|
||||
<string>Other oximetry options</string>
|
||||
@ -1616,6 +1537,95 @@ Try to sync it to your PC's clock (which should be synced to a timeserver)</stri
|
||||
</layout>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="0" column="0">
|
||||
<widget class="QLabel" name="label_20">
|
||||
<property name="sizePolicy">
|
||||
<sizepolicy hsizetype="Fixed" vsizetype="Preferred">
|
||||
<horstretch>0</horstretch>
|
||||
<verstretch>0</verstretch>
|
||||
</sizepolicy>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>Type</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="1" column="0" colspan="2">
|
||||
<widget class="QCheckBox" name="oximetrySync">
|
||||
<property name="sizePolicy">
|
||||
<sizepolicy hsizetype="Fixed" vsizetype="Fixed">
|
||||
<horstretch>0</horstretch>
|
||||
<verstretch>0</verstretch>
|
||||
</sizepolicy>
|
||||
</property>
|
||||
<property name="toolTip">
|
||||
<string>Tries to forces the oximetry data to link with CPAP when possible.</string>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>Link Oximetry and CPAP graphs</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="3" column="0" colspan="2">
|
||||
<widget class="Line" name="line_4">
|
||||
<property name="orientation">
|
||||
<enum>Qt::Horizontal</enum>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="0" column="1">
|
||||
<widget class="QComboBox" name="oximetryType">
|
||||
<property name="sizePolicy">
|
||||
<sizepolicy hsizetype="Minimum" vsizetype="Fixed">
|
||||
<horstretch>0</horstretch>
|
||||
<verstretch>0</verstretch>
|
||||
</sizepolicy>
|
||||
</property>
|
||||
<item>
|
||||
<property name="text">
|
||||
<string>Contec CMS50D+/E/F</string>
|
||||
</property>
|
||||
</item>
|
||||
<item>
|
||||
<property name="text">
|
||||
<string>Contec CMS50F v3.7+</string>
|
||||
</property>
|
||||
</item>
|
||||
<item>
|
||||
<property name="text">
|
||||
<string>ChoiceMMed MD300W1</string>
|
||||
</property>
|
||||
</item>
|
||||
<item>
|
||||
<property name="text">
|
||||
<string>ResMed S9 Oximeter Module</string>
|
||||
</property>
|
||||
</item>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="6" column="0" colspan="2">
|
||||
<spacer name="verticalSpacer_6">
|
||||
<property name="orientation">
|
||||
<enum>Qt::Vertical</enum>
|
||||
</property>
|
||||
<property name="sizeHint" stdset="0">
|
||||
<size>
|
||||
<width>20</width>
|
||||
<height>40</height>
|
||||
</size>
|
||||
</property>
|
||||
</spacer>
|
||||
</item>
|
||||
<item row="2" column="0" colspan="2">
|
||||
<widget class="QCheckBox" name="syncOximeterClock">
|
||||
<property name="toolTip">
|
||||
<string>If your oximeter supports it, SleepyHead will attempt to set your Oximeters clock from your computers time.</string>
|
||||
</property>
|
||||
<property name="text">
|
||||
<string>Update Oximeter Clock during import</string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
</layout>
|
||||
</widget>
|
||||
</item>
|
||||
|
Loading…
Reference in New Issue
Block a user