From ae6a94544b85324eec106cc38039c2e74ab4e8d2 Mon Sep 17 00:00:00 2001 From: michael Date: Tue, 16 Apr 2024 04:26:35 +0200 Subject: [PATCH] fix readconfigparam.js Unfortunately, I didn't take out some entries from other experiments because I overlooked/forgot them^^ --- sd-card/html/readconfigparam.js | 15 ++++++--------- 1 file changed, 6 insertions(+), 9 deletions(-) diff --git a/sd-card/html/readconfigparam.js b/sd-card/html/readconfigparam.js index d40a248a..593281ef 100644 --- a/sd-card/html/readconfigparam.js +++ b/sd-card/html/readconfigparam.js @@ -173,18 +173,15 @@ function ParseConfig() { param[catname] = new Object(); ParamAddValue(param, catname, "DecimalShift", 1, true); ParamAddValue(param, catname, "AnalogDigitalTransitionStart", 1, true); - ParamAddValue(param, catname, "PreValueUse", 1, true, "true"); + // ParamAddValue(param, catname, "PreValueUse", 1, true, "true"); + ParamAddValue(param, catname, "PreValueUse"); ParamAddValue(param, catname, "PreValueAgeStartup"); - ParamAddValue(param, catname, "AllowNegativeRate", 1, true, "false"); - // ParamAddValue(param, catname, "AllowNegativeRate"); + ParamAddValue(param, catname, "AllowNegativeRates", 1, true, "false"); ParamAddValue(param, catname, "MaxRateValue", 1, true); ParamAddValue(param, catname, "MaxRateType", 1, true); - ParamAddValue(param, catname, "ExtendedResolution", 1, true, "false"); - // ParamAddValue(param, catname, "ExtendedResolution"); - ParamAddValue(param, catname, "IgnoreLeadingNaN", 1, true, "false"); - // ParamAddValue(param, catname, "IgnoreLeadingNaN"); - ParamAddValue(param, catname, "IgnoreAllNaN", 1, true, "false"); - // ParamAddValue(param, catname, "IgnoreAllNaN"); + ParamAddValue(param, catname, "ExtendedResolution", 1, true, "false"); + ParamAddValue(param, catname, "IgnoreLeadingNaN", 1, true, "false"); + // ParamAddValue(param, catname, "IgnoreAllNaN", 1, true, "false"); ParamAddValue(param, catname, "ErrorMessage"); ParamAddValue(param, catname, "CheckDigitIncreaseConsistency");