Skip to content

Commit

Permalink
v10.5.1
Browse files Browse the repository at this point in the history
  • Loading branch information
jomjol committed Feb 20, 2022
1 parent c07ef23 commit 7187101
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 8 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ In other cases you can contact the developer via email: <img src="https://raw.gi

##### 10.5.1 - Stability Increase (2022-02-20)

- **NEW 10.5.1:** Bug Fix: wrong return value & PreValue status, HTML: SSID & IP were not displayed
- **NEW 10.5.1:** Bug Fix: wrong return value, rate value & PreValue status, HTML: SSID & IP were not displayed
- MQTT: changed wifi naming to "wifiRSSI"
- HTML: check select able values for consistency
- Refactoring of check postprocessing consistency (e.g. max rate, negative rate, ...)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -605,6 +605,7 @@ bool ClassFlowPostProcessing::doFlow(string zwtime)
for (int j = 0; j < NUMBERS.size(); ++j)
{
NUMBERS[j]->ReturnRawValue = "";
NUMBERS[j]->ReturnRateValue = "";
NUMBERS[j]->ReturnValue = "";
NUMBERS[j]->ErrorMessageText = "";
NUMBERS[j]->Value = -1;
Expand Down Expand Up @@ -670,8 +671,9 @@ bool ClassFlowPostProcessing::doFlow(string zwtime)
double difference = difftime(imagetime, NUMBERS[j]->lastvalue); // in Sekunden
difference /= 60;
NUMBERS[j]->FlowRateAct = (NUMBERS[j]->Value - NUMBERS[j]->PreValue) / difference;
NUMBERS[j]->ReturnRateValue = to_string(NUMBERS[j]->FlowRateAct);

if (NUMBERS[j]->useMaxRateValue)
if (NUMBERS[j]->useMaxRateValue && PreValueUse && NUMBERS[j]->PreValueOkay)
{
float _ratedifference;
if (NUMBERS[j]->RateType == RateChange)
Expand Down
6 changes: 3 additions & 3 deletions code/main/version.cpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
const char* GIT_REV="cbe884a";
const char* GIT_TAG="v10.5.0";
const char* GIT_REV="c07ef23";
const char* GIT_TAG="";
const char* GIT_BRANCH="master";
const char* BUILD_TIME="2022-02-20 16:02";
const char* BUILD_TIME="2022-02-20 16:21";
6 changes: 3 additions & 3 deletions code/version.cpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
const char* GIT_REV="cbe884a";
const char* GIT_TAG="v10.5.0";
const char* GIT_REV="c07ef23";
const char* GIT_TAG="";
const char* GIT_BRANCH="master";
const char* BUILD_TIME="2022-02-20 16:01";
const char* BUILD_TIME="2022-02-20 16:21";
Binary file modified firmware/bootloader.bin
Binary file not shown.
Binary file modified firmware/firmware.bin
Binary file not shown.

0 comments on commit 7187101

Please sign in to comment.