diff --git a/sleepyhead/Graphs/gGraphView.cpp b/sleepyhead/Graphs/gGraphView.cpp index 7c3076d6..cb5bda6c 100644 --- a/sleepyhead/Graphs/gGraphView.cpp +++ b/sleepyhead/Graphs/gGraphView.cpp @@ -1689,6 +1689,7 @@ void gGraphView::populateMenu(gGraph * graph) QCheckBox *chbox = new QCheckBox(chan.calc[dot.type].label(), context_menu); chbox->setMouseTracking(true); + chbox->setStyleSheet(QString("QCheckBox:hover { background: %1; }").arg(QApplication::palette().highlight().color().name())); widget->setDefaultWidget(chbox); @@ -1742,6 +1743,8 @@ void gGraphView::populateMenu(gGraph * graph) QCheckBox *chbox = new QCheckBox(schema::channel[code].label(), context_menu); chbox->setMouseTracking(true); chbox->setToolTip(schema::channel[code].description()); + chbox->setStyleSheet(QString("QCheckBox:hover { background: %1; }").arg(QApplication::palette().highlight().color().name())); + widget->setDefaultWidget(chbox); @@ -1788,8 +1791,6 @@ void gGraphView::populateMenu(gGraph * graph) QHash Vis; - if (chans.size() > 0) { - } for (int i=0; i < chans.size() ; ++i) { ChannelID code = chans.at(i); schema::Channel & chan = schema::channel[code]; @@ -1797,8 +1798,11 @@ void gGraphView::populateMenu(gGraph * graph) QWidgetAction * widget = new QWidgetAction(context_menu); QCheckBox *chbox = new QCheckBox(schema::channel[code].fullname(), context_menu); + chbox->setPalette(context_menu->palette()); chbox->setMouseTracking(true); chbox->setToolTip(schema::channel[code].description()); + chbox->setStyleSheet(QString("QCheckBox:hover { background: %1; }").arg(QApplication::palette().highlight().color().name())); + widget->setDefaultWidget(chbox); diff --git a/sleepyhead/SleepLib/loader_plugins/cms50f37_loader.cpp b/sleepyhead/SleepLib/loader_plugins/cms50f37_loader.cpp index 10571aa8..cdc64d5d 100644 --- a/sleepyhead/SleepLib/loader_plugins/cms50f37_loader.cpp +++ b/sleepyhead/SleepLib/loader_plugins/cms50f37_loader.cpp @@ -585,7 +585,7 @@ void CMS50F37Loader::syncClock() 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 }; + quint8 datecmd[] = { 0x7d, 0x81, 0xb2, yh | 0x80, yl |0x80, mon|0x80, day|0x80, wd|0x80, 0x80 }; timectr = 0; if (serial.write((char *)datecmd, 9) == -1) { @@ -604,7 +604,7 @@ void CMS50F37Loader::syncClock() quint8 m = ctime.minute(); quint8 s = ctime.second(); - quint8 timecmd[] = { 0x7d, 0xb2, h | 0x80, m |0x80, s|0x80, 0x80, 0x80, 0x80, 0x80 }; + quint8 timecmd[] = { 0x7d, 0x81, 0xb1, h | 0x80, m |0x80, s|0x80, 0x80, 0x80, 0x80 }; timectr = 0; if (serial.write((char *)timecmd, 9) == -1) { diff --git a/sleepyhead/SleepLib/loader_plugins/resmed_loader.cpp b/sleepyhead/SleepLib/loader_plugins/resmed_loader.cpp index 987851be..6d989c96 100644 --- a/sleepyhead/SleepLib/loader_plugins/resmed_loader.cpp +++ b/sleepyhead/SleepLib/loader_plugins/resmed_loader.cpp @@ -2441,6 +2441,27 @@ void ResInitModelMap() resmed_codes[CPAP_PressureMin].push_back("\xE6\x9C\x80\xE5\xB0\x8F\xE5\x8E\x8B\xE5\x8A\x9B"); // Chinese resmed_codes[CPAP_PressureMin].push_back("Pression min."); resmed_codes[CPAP_PressureMin].push_back("Min tryck"); + + // BRP file + resmed_codes[CPAP_FlowRate].push_back("Flow.40ms"); + resmed_codes[CPAP_MaskPressureHi].push_back("Pres.40ms"); + + // SAD file + resmed_codes[OXI_Pulse].push_back("Pulse.1s"); + resmed_codes[OXI_SPO2].push_back("SpO2.1s"); + + // PLD file + resmed_codes[CPAP_MaskPressure].push_back("MaskPress.2s"); + resmed_codes[CPAP_Pressure].push_back("Press.2s"); + //resmed_codes[RMS9_EPRPressure].push_back("EPRPress.2s"); + resmed_codes[CPAP_Leak].push_back("Leak.2s"); + resmed_codes[CPAP_RespRate].push_back("RespRate.2s"); + resmed_codes[CPAP_TidalVolume].push_back("TidVol.2s"); + resmed_codes[CPAP_MinuteVent].push_back("MinVent.2s"); + resmed_codes[CPAP_Snore].push_back("Snore.2s"); + resmed_codes[CPAP_FLG].push_back("FlowLim.2s"); + + } ChannelID ResmedLoader::PresReliefMode() { return RMS9_EPR; } diff --git a/sleepyhead/oximeterimport.cpp b/sleepyhead/oximeterimport.cpp index 7fc4e0f0..a5d81ed1 100644 --- a/sleepyhead/oximeterimport.cpp +++ b/sleepyhead/oximeterimport.cpp @@ -225,6 +225,10 @@ void OximeterImport::on_directImportButton_clicked() QString model = oximodule->getModel(); QString user = oximodule->getUser(); + if (p_profile->oxi->syncOximeterClock()) { + oximodule->syncClock(); + } + oximodule->resetDevice(); int session_count = oximodule->getSessionCount();