Skip to content

Commit 4615e87

Browse files
authored
Merge pull request #147 from jomjol/rolling
Rolling
2 parents 2674549 + fb9b72d commit 4615e87

File tree

10 files changed

+16
-15
lines changed

10 files changed

+16
-15
lines changed

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,9 @@ If you would like to support the developer with a cup of coffee you can do that
4141

4242

4343

44-
##### 6.2.1 Image Processing in Memory - (2021-03-08)
44+
##### 6.2.2 Image Processing in Memory - (2021-03-10)
4545

46+
* NEW 6.2.2: bug fixing
4647
* NEW 6.2.1: Changed brightness and contrast to default if not enabled (resolves to bright images)
4748
* Determination of fixed illumination settings during startup - speed up of 5s in each run
4849
* Update digital CNN to v8.1.1 (additional digital images trained)

code/components/jomjol_flowcontroll/ClassFlowPostProcessing.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -368,7 +368,7 @@ bool ClassFlowPostProcessing::doFlow(string zwtime)
368368

369369
if (useMaxRateValue && (abs(Value - PreValue) > MaxRateValue))
370370
{
371-
ErrorMessageText = ErrorMessageText + "Rate too high - Returned old value - read value: " + zwvalue + " - checked value: " + std::to_string(Value) + " ";
371+
ErrorMessageText = ErrorMessageText + "Rate too high - Returned old value - read value: " + zwvalue + " - checked value: " + RundeOutput(Value, AnzahlAnalog - DecimalShift) + " ";
372372
Value = PreValue;
373373
zwvalue = RundeOutput(Value, AnzahlAnalog - DecimalShift);
374374
}

code/main/version.cpp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
const char* GIT_REV="4537725";
2-
const char* GIT_TAG="v6.2.0";
3-
const char* GIT_BRANCH="master";
4-
const char* BUILD_TIME="2021-03-09 21:07";
1+
const char* GIT_REV="5cc873a";
2+
const char* GIT_TAG="";
3+
const char* GIT_BRANCH="rolling";
4+
const char* BUILD_TIME="2021-03-10 21:09";

code/main/version.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ extern "C"
1313
#include "Helper.h"
1414
#include <fstream>
1515

16-
const char* GIT_BASE_BRANCH = "master - v6.2.1 - 2020-03-09";
16+
const char* GIT_BASE_BRANCH = "master - v6.2.2 - 2020-03-10";
1717

1818

1919
const char* git_base_branch(void)

code/version.cpp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
const char* GIT_REV="4537725";
2-
const char* GIT_TAG="v6.2.0";
3-
const char* GIT_BRANCH="master";
4-
const char* BUILD_TIME="2021-03-09 21:07";
1+
const char* GIT_REV="5cc873a";
2+
const char* GIT_TAG="";
3+
const char* GIT_BRANCH="rolling";
4+
const char* BUILD_TIME="2021-03-10 21:09";

firmware/bootloader.bin

0 Bytes
Binary file not shown.

firmware/firmware.bin

2.17 KB
Binary file not shown.

firmware/html.zip

3 Bytes
Binary file not shown.

sd-card/html/edit_config_param.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -487,7 +487,7 @@ <h4><input type="checkbox" id="Category_Analog_enabled" value="1" onclick = 'Up
487487
<input type="text" id="MQTT_Uri_value1">
488488
</td>
489489
<td style="font-size: 80%;">
490-
URI to the MQTT broker including port: http:\\IP-ADRESS:port
490+
URI to the MQTT broker including port e.g.: mqtt://IP-Address:Port
491491
</td>
492492
</tr>
493493
<tr>
@@ -543,7 +543,7 @@ <h4><input type="checkbox" id="Category_Analog_enabled" value="1" onclick = 'Up
543543
<input type="text" id="MQTT_user_value1">
544544
</td>
545545
<td style="font-size: 80%;">
546-
user for MQTT authenficiation
546+
user for MQTT authentication
547547
</td>
548548
</tr>
549549
<tr>
@@ -557,7 +557,7 @@ <h4><input type="checkbox" id="Category_Analog_enabled" value="1" onclick = 'Up
557557
<input type="text" id="MQTT_password_value1">
558558
</td>
559559
<td style="font-size: 80%;">
560-
password for MQTT authenficiation
560+
password for MQTT authentication
561561
</td>
562562
</tr>
563563

sd-card/html/version.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
5.4.0
1+
5.4.1

0 commit comments

Comments
 (0)