mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 10:40:42 +00:00
Confirmed F5V1 slice 8 has a timestamp.
This commit is contained in:
parent
23007c9223
commit
7d355f3699
@ -5668,11 +5668,7 @@ bool PRS1DataChunk::ParseSummaryF5V012(void)
|
||||
tt += data[pos] | (data[pos+1] << 8); // This adds to the total duration (otherwise it won't match report)
|
||||
break;
|
||||
case 8: // ???
|
||||
tt += data[pos] | (data[pos+1] << 8); // Since 7 and 8 seem to occur near each other, let's assume 8 also has a timestamp
|
||||
CHECK_VALUE(pos, 1);
|
||||
CHECK_VALUE(chunk_size, 3);
|
||||
CHECK_VALUE(data[pos], 0); // and alert us if the timestamp is nonzero
|
||||
CHECK_VALUE(data[pos+1], 0);
|
||||
tt += data[pos] | (data[pos+1] << 8); // This also adds to the total duration (otherwise it won't match report)
|
||||
break;
|
||||
case 9: // Humidifier setting change
|
||||
tt += data[pos] | (data[pos+1] << 8); // This adds to the total duration (otherwise it won't match report)
|
||||
|
Loading…
Reference in New Issue
Block a user