forked from challinan/pmd-demo
-
Notifications
You must be signed in to change notification settings - Fork 1
/
datasupplier.cpp
66 lines (56 loc) · 2.49 KB
/
datasupplier.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
#include "datasupplier.h"
using namespace std;
DataSupplier::DataSupplier(QObject* parent): QObject(parent)
{
ecgData <<0<<0<<0<<0<<-11<<-9<<-8<<-4<<0<<-1<<3<<7<<8<<12<<13<<12<<7<<5<<-3<<-7<<-12<<-13<<-16<<-12<<-13<<-13<<-13<<-14<<-14<<-12<<-13<<-13<<-13<<-14<<-15<<-16<<-16<<-17<<-14<<-15<<-8<<-17<<-16<<1<<44<<72<<96<<80<<31<<-11<<-16<<-13<<-12<<-13<<-15<<-16<<-17<<-19<<-17<<-16<<-16<<-15<<-14<<-13<<-14;
abpData <<-7 << -1 <<11 <<24 <<35 <<46 <<55 <<63 <<72 <<79 <<85 << 92 << 98 <<102 <<102 <<103<<103 <<102 <<101 << 97 << 93 << 88 <<83 <<78 <<75 <<66 <<63 <<63 <<63 <<64 <<66 <<67 << 68 <<68<<67 << 64 << 58 <<50 <<49 <<42 <<38 <<33 <<29 <<26 << 24 << 22 << 20 <<18 <<16 <<14 <<13 <<11 <<10<<9 <<7 <<6 << 5 <<3 <<2 <<1 << 0 <<-1 <<-1 <<-2 <<-2 <<-2 <<-3 <<-3 <<-3 <<-4 <<-4 << -4<<-5 <<-5 <<-5 <<-6 <<-6 <<-6 << -6 << -6 <<-7 <<-7 << -7 <<-7<<-5<<-5;
plethData <<-7 << -1 <<11 <<24 <<35 <<40 <<46 <<50 <<55 <<58 <<63 <<72 <<74 << 74 << 76<<78 <<80 << 81 << 81 <<81 <<80 <<80<<80 <<79 <<79 << 78 << 76 << 74 << 70 <<66 <<63 <<63 <<63 <<64 <<66 <<67 << 68 <<68<<67 << 64 << 58 <<50 <<49 <<42 <<38 <<33 <<29 <<26 << 24 << 22 << 20 <<18 <<16 <<14 <<13 <<11 <<10<<9 <<7 <<6 << 5 <<3 <<2 <<1 << 0 <<-1 <<-1 <<-2 <<-2 <<-2 <<-3 <<-3 <<-3 <<-4 <<-4 << -4<<-5 <<-5 <<-5 <<-6 <<-6 <<-6 << -6 << -6 <<-7 <<-7 << -7 <<-7<<-8<<-9<<-9;
ecgIndex =-1;
abpIndex =-1;
plethIndex=-1;
pm_data.index=0;
connect (this,SIGNAL(dataReceived(pm_data_struct*)),parent, SLOT(dataReceived(pm_data_struct*)));
timer = new QTimer(this);
connect(timer, SIGNAL(timeout()), this, SLOT(tickerUpdate()));
timer-> start(30);
}
DataSupplier::~DataSupplier()
{
ecgData.clear();
abpData.clear();
plethData.clear();
}
unsigned int DataSupplier::getECGData()
{
if(ecgIndex==ecgData.count()-1)
ecgIndex=-1;
ecgIndex++;
return ecgData[ecgIndex];
}
unsigned int DataSupplier::getABPData()
{
if(abpIndex==abpData.count()-1)
abpIndex=-1;
abpIndex++;
return abpData[abpIndex];
}
unsigned int DataSupplier::getPlethData()
{
if(plethIndex==plethData.count()-1)
plethIndex=-1;
plethIndex++;
return plethData[plethIndex];
}
void DataSupplier::tickerUpdate()
{
if(pm_data.index==USHRT_MAX)
{
pm_data.index=0;
}
else
pm_data.index++;
pm_data.ecg=getECGData();
pm_data.abp=getABPData();
pm_data.pleth=getPlethData();
emit dataReceived(&pm_data);
}