mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-06 11:10:44 +00:00
Fix Philips PB/CSR sync
This commit is contained in:
parent
3bc9ce4b07
commit
74be17d5d3
@ -1293,7 +1293,6 @@ bool PRS1Import::ParseF0Events()
|
||||
break;
|
||||
|
||||
case 0x0e: // Unknown
|
||||
|
||||
data[0] = ((char *)buffer)[pos++];
|
||||
data[1] = buffer[pos++]; //(buffer[pos+1] << 8) | buffer[pos];
|
||||
//data[0]/=10.0;
|
||||
@ -1309,7 +1308,7 @@ bool PRS1Import::ParseF0Events()
|
||||
break;
|
||||
|
||||
case 0x0f: // Cheyne Stokes Respiration
|
||||
data[0] = buffer[pos + 1] << 8 | buffer[pos];
|
||||
data[0] = (buffer[pos + 1] << 8 | buffer[pos]) * 2;
|
||||
pos += 2;
|
||||
data[1] = buffer[pos++];
|
||||
tt = t - qint64(data[1]) * 1000L;
|
||||
|
Loading…
Reference in New Issue
Block a user