DreamStation sync fixes, update release notes a little bit (no, that's not a signal)

This commit is contained in:
Mark Watkins 2016-02-27 15:39:01 +10:00
parent c9b774a47a
commit 0a0743ee23
4 changed files with 39 additions and 37 deletions

View File

@ -1115,7 +1115,7 @@ bool PRS1Import::ParseF0Events()
int size = event->m_data.size(); int size = event->m_data.size();
bool FV3 = (event->fileVersion == 3); bool FV3 = (event->fileVersion == 3);
if (FV3) size -= 2; // if (FV3) size -= 2;
unsigned char * buffer = (unsigned char *)event->m_data.data(); unsigned char * buffer = (unsigned char *)event->m_data.data();
CPAPMode mode = (CPAPMode) session->settings[CPAP_Mode].toInt(); CPAPMode mode = (CPAPMode) session->settings[CPAP_Mode].toInt();
@ -1351,13 +1351,10 @@ bool PRS1Import::ParseF0Events()
// Code[24]->AddEvent(t, data[0]); // Code[24]->AddEvent(t, data[0]);
break; break;
case 0x14: // DreamStation unknown code case 0x14: // DreamStation Hypopnea
data[0] = buffer[pos++]; data[0] = buffer[pos++];
tt = t - (qint64(data[0]) * 1000L); tt = t - (qint64(data[0]) * 1000L);
HY->AddEvent(tt, data[0]); HY->AddEvent(tt, data[0]);
// tt = t - (qint64(data[0]) * 1000L);
// pos++;
break; break;
default: default:
@ -2328,6 +2325,7 @@ bool PRS1Import::ParseOximetery()
bool PRS1Import::ParseWaveforms() bool PRS1Import::ParseWaveforms()
{ {
int size = waveforms.size(); int size = waveforms.size();
quint64 s1, s2;
for (int i=0; i < size; ++i) { for (int i=0; i < size; ++i) {
PRS1DataChunk * waveform = waveforms.at(i); PRS1DataChunk * waveform = waveforms.at(i);
@ -2338,7 +2336,7 @@ bool PRS1Import::ParseWaveforms()
continue; continue;
} }
quint64 ti = quint64(waveform->timestamp) * 1000L; quint64 ti = quint64(waveform->timestamp) * 1000L;
qint64 dur = qint64(waveform->duration) * 1000L; quint64 dur = qint64(waveform->duration) * 1000L;
if (num > 1) { if (num > 1) {
// Process interleaved samples // Process interleaved samples
@ -2354,19 +2352,22 @@ bool PRS1Import::ParseWaveforms()
} }
} while (pos < size); } while (pos < size);
if (data[0].size() > 0) { s1 = data[0].size();
EventList * flow = session->AddEventList(CPAP_FlowRate, EVL_Waveform, 1.0, 0.0, 0.0, 0.0, dur / data[0].size()); s2 = data[1].size();
if (s1 > 0) {
EventList * flow = session->AddEventList(CPAP_FlowRate, EVL_Waveform, 1.0, 0.0, 0.0, 0.0, double(dur) / double(s1));
flow->AddWaveform(ti, (char *)data[0].data(), data[0].size(), dur); flow->AddWaveform(ti, (char *)data[0].data(), data[0].size(), dur);
} }
if (data[1].size() > 0) { if (s2 > 0) {
EventList * pres = session->AddEventList(CPAP_MaskPressureHi, EVL_Waveform, 0.1, 0.0, 0.0, 0.0, dur / data[1].size()); EventList * pres = session->AddEventList(CPAP_MaskPressureHi, EVL_Waveform, 0.1, 0.0, 0.0, 0.0, double(dur) / double(s2));
pres->AddWaveform(ti, (unsigned char *)data[1].data(), data[1].size(), dur); pres->AddWaveform(ti, (unsigned char *)data[1].data(), data[1].size(), dur);
} }
} else { } else {
// Non interleaved, so can process it much faster // Non interleaved, so can process it much faster
EventList * flow = session->AddEventList(CPAP_FlowRate, EVL_Waveform, 1.0, 0.0, 0.0, 0.0, dur / waveform->m_data.size()); EventList * flow = session->AddEventList(CPAP_FlowRate, EVL_Waveform, 1.0, 0.0, 0.0, 0.0, double(dur) / double(waveform->m_data.size()));
flow->AddWaveform(ti, (char *)waveform->m_data.data(), waveform->m_data.size(), dur); flow->AddWaveform(ti, (char *)waveform->m_data.data(), waveform->m_data.size(), dur);
} }
} }
@ -2526,14 +2527,15 @@ QList<PRS1DataChunk *> PRS1Loader::ParseFile(QString path)
// Read the waveform information in reverse. // Read the waveform information in reverse.
int pos = 0x14 + (wvfm_signals - 1) * ws_size; int pos = 0x14 + (wvfm_signals - 1) * ws_size;
for (int i = 0; i < wvfm_signals; ++i) { for (int i = 0; i < wvfm_signals; ++i) {
quint16 interleave = header[pos] | header[pos + 1] << 8; quint16 interleave = header[pos] | header[pos + 1] << 8; // samples per block (Usually 05 00)
if (chunk->fileVersion == 2) { if (chunk->fileVersion == 2) {
quint8 sample_format = header[pos + 2]; quint8 sample_format = header[pos + 2];
chunk->waveformInfo.push_back(PRS1Waveform(interleave, sample_format)); chunk->waveformInfo.push_back(PRS1Waveform(interleave, sample_format));
pos -= 3; pos -= 3;
} else if (chunk->fileVersion == 3) { } else if (chunk->fileVersion == 3) {
quint16 sample_size = header[pos + 2] | header[pos + 3] << 8; quint16 sample_size = header[pos + 2] | header[pos + 3] << 8; // size in bits?? (08 00)
// Possibly this is size in bits, and sign bit for the other byte?
chunk->waveformInfo.push_back(PRS1Waveform(interleave, 0)); chunk->waveformInfo.push_back(PRS1Waveform(interleave, 0));
pos -= 4; pos -= 4;
} }
@ -2604,19 +2606,24 @@ QList<PRS1DataChunk *> PRS1Loader::ParseFile(QString path)
break; break;
} }
// last two bytes contain crc16 checksum. if (chunk->fileVersion==3) {
int ds = chunk->m_data.size(); //int ds = chunk->m_data.size();
quint16 crc16 = chunk->m_data.at(ds-2) | chunk->m_data.at(ds-1) << 8; //quint32 crc16 = chunk->m_data.at(ds-2) | chunk->m_data.at(ds-1) << 8;
chunk->m_data.chop(2); chunk->m_data.chop(4);
} else {
// last two bytes contain crc16 checksum.
int ds = chunk->m_data.size();
quint16 crc16 = chunk->m_data.at(ds-2) | chunk->m_data.at(ds-1) << 8;
chunk->m_data.chop(2);
#ifdef PRS1_CRC_CHECK #ifdef PRS1_CRC_CHECK
// This fails.. it needs to include the header! // This fails.. it needs to include the header!
quint16 calc16 = CRC16((unsigned char *)chunk->m_data.data(), chunk->m_data.size()); quint16 calc16 = CRC16((unsigned char *)chunk->m_data.data(), chunk->m_data.size());
if (calc16 != crc16) { if (calc16 != crc16) {
// corrupt data block.. bleh.. // corrupt data block.. bleh..
// qDebug() << "CRC16 doesn't match for chunk" << chunk->sessionid << "for" << path; // qDebug() << "CRC16 doesn't match for chunk" << chunk->sessionid << "for" << path;
} }
#endif #endif
}
if ((chunk->ext == 5) || (chunk->ext == 6)){ if ((chunk->ext == 5) || (chunk->ext == 6)){
if (lastchunk != nullptr) { if (lastchunk != nullptr) {

View File

@ -1 +1 @@
const int build_number = 2; const int build_number = 3;

View File

@ -1,23 +1,18 @@
<html> <html>
<head><meta charset="UTF-8"></head> <head><meta charset="UTF-8"></head>
<body> <body>
<h1><image src="qrc:/docs/sheep.png" width=64 height=64>SleepyHead v0.9.8-2 <b>Testing</b></h1> <h1><image src="qrc:/docs/sheep.png" width=64 height=64>SleepyHead v0.9.8-3 Release Notes</b></h2></p>
<h2><p>Greetings!</p></h2>
<p><h2><b>Release Notes</b></h2></p> <p><h3>It's been a long time coming, but this build brings initial support for Philips Respironics DreamStation.</h3></p>
<p>Greetings!</p> <p><h2><font color='red'><b>Important:</b></font> <i>This is a pre-release test build, not all features are complete or will work 100% as intended yet!</i></h2></p>
<p><h2><i>Back up your data folder manually, by making a copy the SleepyHeadData folder, as attempting to roll back later may break things.</i></h2></p>
<p><h2><font color='red'><b>Warning:</b></font> This is a pre-release test build, not all features are complete or will work 100% as intended yet!</h2></p>
<p><h2>This one is specifically to test CMS50i on Mac, and nothing else.</h2></p>
<p><h2><font color='red'><b>Important:</b></font> <i>Back up your data folder manually, by making a copy the SleepyHeadData folder, as attempting to roll back later may break things.</i></h2></p>
<p><h2><font color='blue'>DreamStation support is not ready yet, so please, I <font color='red'>*don't*</font> want feedback from DreamStation users testing this particular build.</font>(You're of course welcome to try, but you are likely to be a little disappointed.)</h2></p>
<p><h2>Please don't share this with anyone else or reupload anywhere, it's not a public release.</h2></p>
<p><b>Sleep Well, and good luck!</b></p> <p><b>Sleep Well, and good luck!</b></p>
<p><b><i>JediMark</i></b></p> <p><b><i>JediMark</i></b></p>
<br/> <br/>
<b>Changes and fixes in v0.9.8-2</b> <b>Changes and fixes in v0.9.8-2</b>
<list> <list>
<li>Initial DreamStation support (Thanks for your assistance JediBob!) <li>Initial DreamStation support (Thanks for your assistance JediBob and PaleRider, and everyone who shared their data!)
<li>AirCurve pressure reporting glitches</li> <li>AirCurve pressure reporting glitches</li>
<li>Fix F&P Import hang</li> <li>Fix F&P Import hang</li>
<li>Pinch to zoom support</li> <li>Pinch to zoom support</li>

View File

@ -1 +1 @@
2 3