mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-07 03:30:44 +00:00
Refine PRS1 untested data warning based on new sample data.
This commit is contained in:
parent
c92ef13e19
commit
bc62fce130
@ -5366,8 +5366,9 @@ bool PRS1DataChunk::ParseSummaryF3V6(void)
|
|||||||
qWarning() << this->sessionid << "summary data too short:" << chunk_size;
|
qWarning() << this->sessionid << "summary data too short:" << chunk_size;
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
// We've once seen a short summary with no mask-on/off: just equipment-on, settings, 9, equipment-off
|
// We've once seen a short summary with no mask-on/off: just equipment-on, settings, 2, equipment-off
|
||||||
if (chunk_size < 75) UNEXPECTED_VALUE(chunk_size, ">= 75");
|
// (And we've seen something similar in F5V3.)
|
||||||
|
if (chunk_size < 58) UNEXPECTED_VALUE(chunk_size, ">= 58");
|
||||||
|
|
||||||
bool ok = true;
|
bool ok = true;
|
||||||
int pos = 0;
|
int pos = 0;
|
||||||
@ -6991,6 +6992,7 @@ bool PRS1DataChunk::ParseSummaryF5V3(void)
|
|||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
// We've once seen a short summary with no mask-on/off: just equipment-on, settings, 9, equipment-off
|
// We've once seen a short summary with no mask-on/off: just equipment-on, settings, 9, equipment-off
|
||||||
|
// (And we've seen something similar in F3V6.)
|
||||||
if (chunk_size < 75) UNEXPECTED_VALUE(chunk_size, ">= 75");
|
if (chunk_size < 75) UNEXPECTED_VALUE(chunk_size, ">= 75");
|
||||||
|
|
||||||
bool ok = true;
|
bool ok = true;
|
||||||
|
Loading…
Reference in New Issue
Block a user