Skip to content

Commit 7963474

Browse files
committed
Update 20200923
1 parent a8aa6d6 commit 7963474

File tree

10 files changed

+299
-459
lines changed

10 files changed

+299
-459
lines changed

README.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,13 @@ A 3d-printable housing can be found here: https://www.thingiverse.com/thing:4571
2929

3030

3131

32-
##### Rolling - (2020-09-21)
32+
##### Rolling - (2020-09-23)
33+
34+
* Error Correction for Chrome and Firefox Support
35+
36+
* Update CNN for digits to v6.4.0
37+
38+
2020-09-21
3339

3440
* Temperature Logging, Code Corrections
3541

code/lib/jomjol_flowcontroll/ClassFlowPostProcessing.cpp

Lines changed: 4 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -171,17 +171,13 @@ bool ClassFlowPostProcessing::ReadParameter(FILE* pfile, string& aktparamgraph)
171171
if ((toUpper(zerlegt[0]) == "DECIMALSHIFT") && (zerlegt.size() > 1))
172172
{
173173
DecimalShift = stoi(zerlegt[1]);
174-
if (PreValueUse){
175-
PreValueOkay = LoadPreValue();
176-
}
177174
}
178175

179176
if ((toUpper(zerlegt[0]) == "PREVALUEUSE") && (zerlegt.size() > 1))
180177
{
181178
if (toUpper(zerlegt[1]) == "TRUE")
182179
{
183180
PreValueUse = true;
184-
PreValueOkay = LoadPreValue();
185181
}
186182
}
187183
if ((toUpper(zerlegt[0]) == "CHECKDIGITINCREASECONSISTENCY") && (zerlegt.size() > 1))
@@ -209,6 +205,10 @@ bool ClassFlowPostProcessing::ReadParameter(FILE* pfile, string& aktparamgraph)
209205
MaxRateValue = std::stof(zerlegt[1]);
210206
}
211207
}
208+
209+
if (PreValueUse) {
210+
PreValueOkay = LoadPreValue();
211+
}
212212
return true;
213213
}
214214

@@ -329,23 +329,6 @@ bool ClassFlowPostProcessing::doFlow(string zwtime)
329329
return true;
330330
}
331331

332-
/*
333-
if (isdigit)
334-
{
335-
int lastanalog = -1;
336-
if (isanalog)
337-
lastanalog = analog[0] - 48;
338-
digit = ErsetzteN(digit, lastanalog);
339-
zw = digit;
340-
}
341-
342-
if (isdigit && isanalog)
343-
zw = zw + ".";
344-
if (isanalog)
345-
zw = zw + analog;
346-
zw = ShiftDecimal(zw, DecimalShift);
347-
*/
348-
349332
zw = ErsetzteN(ReturnRawValue);
350333

351334
Value = std::stof(zw);

code/sdkconfig

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -240,8 +240,8 @@ CONFIG_ESP_EVENT_POST_FROM_ISR=y
240240
CONFIG_ESP_EVENT_POST_FROM_IRAM_ISR=y
241241
CONFIG_ESP_HTTP_CLIENT_ENABLE_HTTPS=y
242242
# CONFIG_ESP_HTTP_CLIENT_ENABLE_BASIC_AUTH is not set
243-
CONFIG_HTTPD_MAX_REQ_HDR_LEN=512
244-
CONFIG_HTTPD_MAX_URI_LEN=512
243+
CONFIG_HTTPD_MAX_REQ_HDR_LEN=1024
244+
CONFIG_HTTPD_MAX_URI_LEN=1024
245245
CONFIG_HTTPD_ERR_RESP_NO_DELAY=y
246246
CONFIG_HTTPD_PURGE_BUF_LEN=32
247247
# CONFIG_HTTPD_LOG_PURGE_DATA is not set

0 commit comments

Comments
 (0)