Increased Pulse & SPO2 buffer sizes

This commit is contained in:
Mark Watkins 2011-06-07 01:42:34 +10:00
parent 504bf11914
commit 66015292f2
3 changed files with 12 additions and 12 deletions

View File

@ -8295,7 +8295,7 @@
<sleeplib/machine.h>
<list>
1307374498 /home/mark/projects/git/sleepyhead/src/version.h
1307374921 /home/mark/projects/git/sleepyhead/src/version.h
1307358939 /home/mark/projects/git/sleepyhead/src/libs/sleeplib/prs1_loader.h
"machine.h"
@ -8332,7 +8332,7 @@
"sleeplib/profiles.h"
"sleeplib/machine_loader.h"
1307374169 source:/home/mark/projects/git/sleepyhead/src/graphs/graph.cpp
1307374498 source:/home/mark/projects/git/sleepyhead/src/graphs/graph.cpp
<wx/settings.h>
<wx/dcbuffer.h>
<wx/log.h>

View File

@ -586,19 +586,19 @@ Daily::Daily(wxWindow *win,Profile *p)
l->color.push_back(wxGREEN2);
G_AHI->AddLayer(l);
AddOXIData(pulse=new EventData(OXI_Pulse,0,32768,true));
AddOXIData(pulse=new EventData(OXI_Pulse,0,65536,true));
//pulse->ForceMinY(40);
//pulse->ForceMaxY(120);
PULSE=new gGraphWindow(ScrolledWindow,-1,wxT("Pulse"),wxPoint(0,0), wxSize(600,130), wxNO_BORDER);
PULSE->AddLayer(new gLineChart(pulse,wxRED,32768,false,false,true));
PULSE->AddLayer(new gLineChart(pulse,wxRED,65536,false,false,true));
PULSE->AddLayer(new gXAxis(wxBLACK));
AddOXIData(spo2=new EventData(OXI_SPO2,0,32768,true));
AddOXIData(spo2=new EventData(OXI_SPO2,0,65536,true));
//spo2->ForceMinY(60);
//spo2->ForceMaxY(100);
SPO2=new gGraphWindow(ScrolledWindow,-1,wxT("SpO2"),wxPoint(0,0), wxSize(600,130), wxNO_BORDER);
SPO2->AddLayer(new gLineChart(spo2,wxBLUE,32768,false,false,true));
SPO2->AddLayer(new gLineChart(spo2,wxBLUE,65536,false,false,true));
SPO2->AddLayer(new gXAxis(wxBLACK));
SPO2->LinkZoom(PULSE);
PULSE->LinkZoom(SPO2);

View File

@ -16,14 +16,14 @@ namespace AutoVersion{
//Standard Version Type
static const long MAJOR = 0;
static const long MINOR = 7;
static const long BUILD = 3322;
static const long REVISION = 1288;
static const long BUILD = 3323;
static const long REVISION = 1290;
//Miscellaneous Version Types
static const long BUILDS_COUNT = 472;
#define RC_FILEVERSION 0,7,3322,1288
#define RC_FILEVERSION_STRING "0, 7, 3322, 1288\0"
static const char FULLVERSION_STRING[] = "0.7.3322.1288";
static const long BUILDS_COUNT = 474;
#define RC_FILEVERSION 0,7,3323,1290
#define RC_FILEVERSION_STRING "0, 7, 3323, 1290\0"
static const char FULLVERSION_STRING[] = "0.7.3323.1290";
//These values are to keep track of your versioning state, don't modify them.
static const long BUILD_HISTORY = 0;