diff --git a/README.md b/README.md index 99a84c56..76054055 100644 --- a/README.md +++ b/README.md @@ -27,6 +27,14 @@ A 3d-printable housing can be found here: https://www.thingiverse.com/thing:4571 ##### Rolling - (2020-11-08) +* Implementation of rolling log-files - can be controlled by parameter: `LogfileRetentionInDays = 2` - that means log files will be deleted after 2 days + Many thanks to **[zwer2k](https://forum.iobroker.net/user/zwer2k)** +* Bug-fixing for reducing reboots - internal memory removed - + Many thanks to **[hike6688](https://github.com/hike6688)** + + +2020-11-08 + * Updated Tensorflow tflite Kernel to master@20201108 (R2.4?) 2020-11-03 diff --git a/code/lib/jomjol_flowcontroll/ClassFlowControll.cpp b/code/lib/jomjol_flowcontroll/ClassFlowControll.cpp index 3307f5eb..a50de987 100644 --- a/code/lib/jomjol_flowcontroll/ClassFlowControll.cpp +++ b/code/lib/jomjol_flowcontroll/ClassFlowControll.cpp @@ -153,7 +153,7 @@ std::string ClassFlowControll::getActStatus(){ bool ClassFlowControll::doFlow(string time) { - CleanTempFolder(); +// CleanTempFolder(); // dazu muss man noch eine Rolling einführen bool result = true; std::string zw_time; diff --git a/code/lib/jomjol_tfliteclass/CTfLiteClass.cpp b/code/lib/jomjol_tfliteclass/CTfLiteClass.cpp index f2d1190c..c6a2d7c5 100644 --- a/code/lib/jomjol_tfliteclass/CTfLiteClass.cpp +++ b/code/lib/jomjol_tfliteclass/CTfLiteClass.cpp @@ -244,6 +244,8 @@ CTfLiteClass::CTfLiteClass() CTfLiteClass::~CTfLiteClass() { delete this->tensor_arena; + delete this->interpreter; + delete this->error_reporter; } diff --git a/code/src/version.cpp b/code/src/version.cpp index 5cea5ac3..af330b14 100644 --- a/code/src/version.cpp +++ b/code/src/version.cpp @@ -1,4 +1,4 @@ -const char* GIT_REV="05a0f6f"; +const char* GIT_REV="46265de"; const char* GIT_TAG=""; -const char* GIT_BRANCH="update_tflite"; -const char* BUILD_TIME="2020-11-08 03:06"; +const char* GIT_BRANCH="rolling"; +const char* BUILD_TIME="2020-11-13 18:39"; \ No newline at end of file diff --git a/code/version.cpp b/code/version.cpp index 5cea5ac3..af330b14 100644 --- a/code/version.cpp +++ b/code/version.cpp @@ -1,4 +1,4 @@ -const char* GIT_REV="05a0f6f"; +const char* GIT_REV="46265de"; const char* GIT_TAG=""; -const char* GIT_BRANCH="update_tflite"; -const char* BUILD_TIME="2020-11-08 03:06"; +const char* GIT_BRANCH="rolling"; +const char* BUILD_TIME="2020-11-13 18:39"; \ No newline at end of file diff --git a/firmware/bootloader.bin b/firmware/bootloader.bin index 32edcb3a..da605ae2 100644 Binary files a/firmware/bootloader.bin and b/firmware/bootloader.bin differ diff --git a/firmware/firmware.bin b/firmware/firmware.bin index 49ae261a..5f2c78ad 100644 Binary files a/firmware/firmware.bin and b/firmware/firmware.bin differ diff --git a/firmware/html.zip b/firmware/html.zip index 6c5b3e56..de3694be 100644 Binary files a/firmware/html.zip and b/firmware/html.zip differ