From 67c3020d7df7771d6aeae06f435677a4604af48b Mon Sep 17 00:00:00 2001 From: michael Date: Sun, 1 Sep 2024 16:36:51 +0200 Subject: [PATCH] Update ClassFlowDefineTypes.h RateType renamed to MaxRateType --- code/components/jomjol_flowcontroll/ClassFlowDefineTypes.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/components/jomjol_flowcontroll/ClassFlowDefineTypes.h b/code/components/jomjol_flowcontroll/ClassFlowDefineTypes.h index cb7f3e2f9..786713203 100644 --- a/code/components/jomjol_flowcontroll/ClassFlowDefineTypes.h +++ b/code/components/jomjol_flowcontroll/ClassFlowDefineTypes.h @@ -40,7 +40,7 @@ enum t_RateType { struct NumberPost { float MaxRateValue; // maxRate; upper bound for the difference between two consecutive readings; affected by maxRateType; bool useMaxRateValue; // consistencyChecksEnabled; enables consistency checks; uses maxRate and maxRateType - t_RateType RateType; // maxRateType; affects how the value of maxRate is used for comparing the current and previous value + t_RateType MaxRateType; // maxRateType; affects how the value of maxRate is used for comparing the current and previous value bool ErrorMessage; // FIXME: not used; can be removed int ChangeRateThreshold; // threshold parameter for negative rate detection bool PreValueOkay; // previousValueValid; indicates that the reading of the previous round has no errors