Add support for 16-bit timestamps in F5V1 events.

This commit is contained in:
sawinglogz 2019-10-08 11:20:51 -04:00
parent 5872a9519e
commit 1946be162c

View File

@ -2297,10 +2297,8 @@ bool PRS1DataChunk::ParseEventsF5V1(void)
break;
}
startpos = pos;
if (code != 0 && code != 0x12) { // These two codes have no timestamp TODO: verify this applies to F5V012
t += data[pos] /*| (data[pos+1] << 8)*/; // TODO: Is this really only 1 byte?
if (data[pos+1] != 0) qWarning() << this->sessionid << "nonzero time? byte" << hex(startpos);
CHECK_VALUE(data[pos+1], 0);
if (code != 0) { // Does this code really not have a timestamp? Never seen on F5V1, checked in F5V0.
t += data[pos] | (data[pos+1] << 8);
pos += 2;
}