Skip to content

Commit f8478d7

Browse files
committed
Merge branch 'master' into rolling
2 parents 7bfa221 + a3d6923 commit f8478d7

File tree

7 files changed

+11
-19
lines changed

7 files changed

+11
-19
lines changed

README.md

Lines changed: 4 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -49,17 +49,11 @@ In other cases you can contact the developer via email: <img src="https://raw.gi
4949

5050

5151

52-
##### Rolling (2021-11-06)
52+
##### 9.1.0 - External Illumination (2021-11-14)
5353

54-
* External LEDs: change control mode (problem with more than 2 LEDs)
55-
56-
* Additional info into log file
57-
58-
* Bug fix: wrong number of sub digits in case analog and decimal shift
59-
60-
* Bug fix: html code
61-
62-
54+
- External LEDs: change control mode (resolve bug with more than 2 LEDs)
55+
- Additional info into log file
56+
- Bug fix: decimal shift, html, log file
6357

6458
##### 9.0.0 - External Illumination (2021-10-23)
6559

code/components/jomjol_flowcontroll/ClassFlowPostProcessing.cpp

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -492,8 +492,6 @@ void ClassFlowPostProcessing::InitNUMBERS()
492492
_number->MaxRateValue = 0.1;
493493
_number->useMaxRateValue = false;
494494
_number->checkDigitIncreaseConsistency = false;
495-
_number->PreValueOkay = false;
496-
_number->useMaxRateValue = false;
497495
_number->DecimalShift = 0;
498496
_number->DecimalShiftInitial = 0;
499497
_number->isExtendedResolution = false;
@@ -658,7 +656,7 @@ bool ClassFlowPostProcessing::doFlow(string zwtime)
658656
zwvalue = RundeOutput(NUMBERS[j]->Value, NUMBERS[j]->Nachkomma);
659657
}
660658

661-
if (NUMBERS[j]->useMaxRateValue && (abs(NUMBERS[j]->Value - NUMBERS[j]->PreValue) > NUMBERS[j]->MaxRateValue))
659+
if (NUMBERS[j]->useMaxRateValue && ((abs(NUMBERS[j]->Value - NUMBERS[j]->PreValue) > NUMBERS[j]->MaxRateValue)))
662660
{
663661
NUMBERS[j]->ErrorMessageText = NUMBERS[j]->ErrorMessageText + "Rate too high - Read: " + RundeOutput(NUMBERS[j]->Value, NUMBERS[j]->Nachkomma) + " - Pre: " + RundeOutput(NUMBERS[j]->PreValue, NUMBERS[j]->Nachkomma);
664662
NUMBERS[j]->Value = NUMBERS[j]->PreValue;

code/main/version.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
const char* GIT_REV="020e93b";
1+
const char* GIT_REV="4fe9ab9";
22
const char* GIT_TAG="";
3-
const char* GIT_BRANCH="rolling";
4-
const char* BUILD_TIME="2021-11-06 22:37";
3+
const char* GIT_BRANCH="master";
4+
const char* BUILD_TIME="2021-11-14 08:39";

code/version.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
const char* GIT_REV="020e93b";
1+
const char* GIT_REV="4fe9ab9";
22
const char* GIT_TAG="";
3-
const char* GIT_BRANCH="rolling";
4-
const char* BUILD_TIME="2021-11-06 22:36";
3+
const char* GIT_BRANCH="master";
4+
const char* BUILD_TIME="2021-11-14 08:39";

firmware/bootloader.bin

0 Bytes
Binary file not shown.

firmware/firmware.bin

-112 Bytes
Binary file not shown.

firmware/html.zip

1 Byte
Binary file not shown.

0 commit comments

Comments
 (0)