mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-06 11:10:44 +00:00
Oximetry fix to pulse rate high bit
This commit is contained in:
parent
735d6e894e
commit
2a718c4d70
@ -453,7 +453,7 @@ void CMS50Serial::import_process()
|
|||||||
bool first=true;
|
bool first=true;
|
||||||
while (i<(size-3)) {
|
while (i<(size-3)) {
|
||||||
a=data.at(i++); // low bits are supposedly the high bits of the heart rate
|
a=data.at(i++); // low bits are supposedly the high bits of the heart rate
|
||||||
pl=(data.at(i++) & 0x7f) | ((a & 3) << 7);
|
pl=((data.at(i++) & 0x7f) | ((a & 1) << 7)) & 0xff;
|
||||||
o2=data.at(i++);
|
o2=data.at(i++);
|
||||||
if (pl!=0) {
|
if (pl!=0) {
|
||||||
if (lastpl!=pl) {
|
if (lastpl!=pl) {
|
||||||
|
Loading…
Reference in New Issue
Block a user