mirror of
https://github.com/jomjol/AI-on-the-edge-device.git
synced 2025-12-10 05:26:52 +03:00
Bug fixing
This commit is contained in:
11
README.md
11
README.md
@@ -25,12 +25,21 @@ A 3d-printable housing can be found here: https://www.thingiverse.com/thing:4571
|
|||||||
|
|
||||||
**General remark:** Beside the `firmware.bin`, typically also the content of `/html` needs to be updated!
|
**General remark:** Beside the `firmware.bin`, typically also the content of `/html` needs to be updated!
|
||||||
|
|
||||||
##### Rolling - (2020-12-27)
|
##### Rolling - (2020-12-29)
|
||||||
|
|
||||||
|
* Parameter `TimerServer` added to `config.ini`
|
||||||
|
|
||||||
|
* Bug fixing: edit digits: log images could not be enabled (html-page update)
|
||||||
|
|
||||||
|
|
||||||
|
2020-12-27
|
||||||
|
|
||||||
* Major change: no need of SD card for image processing anymore (all in memory)
|
* Major change: no need of SD card for image processing anymore (all in memory)
|
||||||
|
|
||||||
* 95% less SD card writing
|
* 95% less SD card writing
|
||||||
* SD use: mainly reading of data (config, html, tflite parameters), only log files and prevalue write on SD card anymore
|
* SD use: mainly reading of data (config, html, tflite parameters), only log files and prevalue write on SD card anymore
|
||||||
* Need to limit camera resolution to VGA (due to memory limits)
|
* Need to limit camera resolution to VGA (due to memory limits)
|
||||||
|
|
||||||
* New Feature: setting of time server in `config.ini`
|
* New Feature: setting of time server in `config.ini`
|
||||||
|
|
||||||
```
|
```
|
||||||
|
|||||||
Binary file not shown.
@@ -59,6 +59,7 @@ LogfileRetentionInDays = 3
|
|||||||
|
|
||||||
[System]
|
[System]
|
||||||
TimeZone = CET-1CEST,M3.5.0,M10.5.0/3
|
TimeZone = CET-1CEST,M3.5.0,M10.5.0/3
|
||||||
|
;TimeServer = fritz.box
|
||||||
SetupMode = true
|
SetupMode = true
|
||||||
|
|
||||||
[Ende]
|
[Ende]
|
||||||
Binary file not shown.
@@ -731,13 +731,13 @@ function WriteConfig(){
|
|||||||
ReadParameter(param, "Alignment", "SearchFieldY", false);
|
ReadParameter(param, "Alignment", "SearchFieldY", false);
|
||||||
|
|
||||||
ReadParameter(param, "Digits", "Model", false);
|
ReadParameter(param, "Digits", "Model", false);
|
||||||
ReadParameter(param, "Digits", "LogImageLocation", false);
|
ReadParameter(param, "Digits", "LogImageLocation", true);
|
||||||
ReadParameter(param, "Digits", "LogfileRetentionInDays", false);
|
ReadParameter(param, "Digits", "LogfileRetentionInDays", true);
|
||||||
ReadParameter(param, "Digits", "ModelInputSize", false, false, 2);
|
ReadParameter(param, "Digits", "ModelInputSize", false, false, 2);
|
||||||
|
|
||||||
ReadParameter(param, "Analog", "Model", false);
|
ReadParameter(param, "Analog", "Model", false);
|
||||||
ReadParameter(param, "Analog", "LogImageLocation", false);
|
ReadParameter(param, "Analog", "LogImageLocation", true);
|
||||||
ReadParameter(param, "Analog", "LogfileRetentionInDays", false);
|
ReadParameter(param, "Analog", "LogfileRetentionInDays", true);
|
||||||
ReadParameter(param, "Analog", "ModelInputSize", false, false, 2);
|
ReadParameter(param, "Analog", "ModelInputSize", false, false, 2);
|
||||||
|
|
||||||
ReadParameter(param, "PostProcessing", "DecimalShift", true);
|
ReadParameter(param, "PostProcessing", "DecimalShift", true);
|
||||||
|
|||||||
@@ -7,9 +7,11 @@ function getbasepath(){
|
|||||||
var host = window.location.hostname;
|
var host = window.location.hostname;
|
||||||
if ((host == "127.0.0.1") || (host == "localhost"))
|
if ((host == "127.0.0.1") || (host == "localhost"))
|
||||||
{
|
{
|
||||||
host = "http://192.168.178.26"; // jomjol interner test
|
host = "http://192.168.2.124"; // jomjol interner test
|
||||||
|
// host = "http://192.168.178.26"; // jomjol interner test
|
||||||
// host = "http://192.168.178.22"; // jomjol interner Real
|
// host = "http://192.168.178.22"; // jomjol interner Real
|
||||||
// host = "."; // jomjol interner localhost
|
// host = "."; // jomjol interner localhost
|
||||||
|
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
|||||||
Reference in New Issue
Block a user