Description:
During StandingStartMassCollection test evaluation, `tstRslt.PulsesMaster` was assigned directly from `cBrd.RefPulses`. By the time the evaluation was executed, the control board had already reset `RefPulses` to zero, resulting in an incorrect master pulse count being stored.
Solution:
Added `finalPulsesCount` to preserve the last valid `cBrd.RefPulses` value immediately after the measurement completed and before the control board reset the pulse counter.
The test evaluation now uses:
tstRslt.PulsesMaster = Convert.ToDouble(finalPulsesCount);
instead of the live `cBrd.RefPulses` value, ensuring the recorded master pulse count reflects the actual measured value.
|
||
|---|---|---|
| .. | ||
| Compound | ||
| HeatMeters | ||
| Single | ||
| StandingStartMassCollectionSeq.cs | ||