From 6fd5ada166cbb54753363488e45a6d103621995c Mon Sep 17 00:00:00 2001 From: Mark Watkins Date: Mon, 18 Jul 2011 10:47:21 +1000 Subject: [PATCH] Reversed Event Flags shadow, oximetry debugging stuff --- Graphs/gFooBar.cpp | 16 +++++++++++++--- Graphs/gLineChart.cpp | 6 +++++- Graphs/graphwindow.cpp | 2 +- oximetry.cpp | 22 ++++++++++++++++++---- 4 files changed, 37 insertions(+), 9 deletions(-) diff --git a/Graphs/gFooBar.cpp b/Graphs/gFooBar.cpp index 24471e94..dd72b15e 100644 --- a/Graphs/gFooBar.cpp +++ b/Graphs/gFooBar.cpp @@ -28,6 +28,7 @@ void gFooBar::Plot(gGraphWindow & w,float scrx,float scry) int start_px=w.GetLeftMargin()-1; int width=scrx - (w.GetLeftMargin() + w.GetRightMargin()); int height=scry - (w.GetTopMargin() + w.GetBottomMargin()); + int end_px=scrx-w.GetRightMargin(); QColor & col1=color[0]; QColor & col2=color[1]; @@ -59,12 +60,21 @@ void gFooBar::Plot(gGraphWindow & w,float scrx,float scry) glEnable(GL_BLEND); glBlendFunc(GL_SRC_ALPHA,GL_ONE_MINUS_SRC_ALPHA); - glColor4f(.2,.2,.2,.3); + glColor4f(.2,.2,.2,.2); glBegin(GL_QUADS); - glVertex2f(start_px+px, w.GetBottomMargin()); + glVertex2f(start_px, w.GetBottomMargin()); + glVertex2f(start_px, w.GetBottomMargin()+height); glVertex2f(start_px+px, w.GetBottomMargin()+height); - glVertex2f(start_px+py, w.GetBottomMargin()+height); + glVertex2f(start_px+px, w.GetBottomMargin()); + //glEnd(); + //glDisable(GL_BLEND); + + //glColor4f(.2,.2,.2,.3); + //glBegin(GL_QUADS); glVertex2f(start_px+py, w.GetBottomMargin()); + glVertex2f(start_px+py, w.GetBottomMargin()+height); + glVertex2f(end_px, w.GetBottomMargin()+height); + glVertex2f(end_px, w.GetBottomMargin()); glEnd(); glDisable(GL_BLEND); } diff --git a/Graphs/gLineChart.cpp b/Graphs/gLineChart.cpp index 74fbf7cb..f3f86177 100644 --- a/Graphs/gLineChart.cpp +++ b/Graphs/gLineChart.cpp @@ -136,7 +136,11 @@ void gLineChart::Plot(gGraphWindow & w,float scrx,float scry) x1=point[1].x(); // if (accel) { sr=x1-x0; // Time distance between samples - assert(sr>0); + if (sr<=0) { + qWarning() << "qLineChart::Plot() assert(sr>0)"; + return; + } + //assert(sr>0); // double qx=xL-x0; // Full time range of this segment //double gx=xx/qx; // ratio of how much of the whole data set this represents //double segwidth=width*gx; diff --git a/Graphs/graphwindow.cpp b/Graphs/graphwindow.cpp index a3a6debf..9d1d0eb2 100644 --- a/Graphs/graphwindow.cpp +++ b/Graphs/graphwindow.cpp @@ -821,7 +821,7 @@ void gGraphWindow::paintGL() if (m_mouseLDown) { if (m_mouseRBrect.width()>0) //glDisable(GL_DEPTH_TEST); - RoundedRectangle(m_mouseRBrect.x(),m_mouseRBrect.y(),m_mouseRBrect.width(),m_mouseRBrect.height(),5,QColor(50,50,50,128)); + RoundedRectangle(m_mouseRBrect.x(),m_mouseRBrect.y(),m_mouseRBrect.width(),m_mouseRBrect.height(),5,QColor(50,50,200,64)); //glEnable(GL_DEPTH_TEST); } glEnable(GL_DEPTH_TEST); diff --git a/oximetry.cpp b/oximetry.cpp index 005f13b8..1d432c36 100644 --- a/oximetry.cpp +++ b/oximetry.cpp @@ -29,7 +29,7 @@ Oximetry::Oximetry(QWidget *parent) : gSplitter->setHandleWidth(2); ui->graphLayout->addWidget(gSplitter); - AddData(pulse=new WaveData(OXI_Pulse)); + AddData(pulse=new EventData(OXI_Pulse)); PULSE=new gGraphWindow(gSplitter,tr("Pulse Rate"),(QGLWidget *)NULL); PULSE->AddLayer(new gXAxis()); PULSE->AddLayer(new gYAxis()); @@ -37,7 +37,7 @@ Oximetry::Oximetry(QWidget *parent) : PULSE->AddLayer(new gLineChart(pulse,Qt::red,65536,false,false,false)); PULSE->setMinimumHeight(150); - AddData(spo2=new WaveData(OXI_SPO2)); + AddData(spo2=new EventData(OXI_SPO2)); SPO2=new gGraphWindow(gSplitter,tr("SPO2"),PULSE); SPO2->AddLayer(new gXAxis()); SPO2->AddLayer(new gYAxis()); @@ -275,6 +275,9 @@ void Oximetry::UpdatePlethy(qint8 d) bool Oximetry::UpdatePulseSPO2(qint8 pul,qint8 sp) { bool ret=false; + + // Don't block zeros.. If the data is used, it's needed + // Can make the graph can skip them. if (lastpulse!=pul) { pulse->point[0][pulse->np[0]].setX(double(lasttime)/86400000.0); pulse->point[0][pulse->np[0]++].setY(pul); @@ -311,7 +314,6 @@ bool Oximetry::UpdatePulseSPO2(qint8 pul,qint8 sp) void Oximetry::onReadyRead() { - static int lastsize=-1; QByteArray bytes; int a = port->bytesAvailable(); bytes.resize(a); @@ -346,7 +348,7 @@ void Oximetry::onReadyRead() } qDebug() << aa; */ - lastsize=bytes.size(); + //lastsize=bytes.size(); } void Oximetry::onDsrChanged(bool status) { @@ -358,6 +360,16 @@ void Oximetry::onDsrChanged(bool status) extern QProgressBar *qprogress; extern QLabel *qstatus; + +void DumpBytes(unsigned char * b,int len) +{ + QString a="Bytes "+QString::number(len,16)+": "; + for (int i=0;iread((char *)rb,0x20); + DumpBytes(rb,0x20); if (blocks==0) { for (int i=0;i