This commit is contained in:
jomjol
2021-03-10 21:15:47 +01:00
parent 5cc873a6bb
commit fb9b72deea
10 changed files with 16 additions and 15 deletions

View File

@@ -368,7 +368,7 @@ bool ClassFlowPostProcessing::doFlow(string zwtime)
if (useMaxRateValue && (abs(Value - PreValue) > MaxRateValue))
{
ErrorMessageText = ErrorMessageText + "Rate too high - Returned old value - read value: " + zwvalue + " - checked value: " + std::to_string(Value) + " ";
ErrorMessageText = ErrorMessageText + "Rate too high - Returned old value - read value: " + zwvalue + " - checked value: " + RundeOutput(Value, AnzahlAnalog - DecimalShift) + " ";
Value = PreValue;
zwvalue = RundeOutput(Value, AnzahlAnalog - DecimalShift);
}