diff --git a/README.md b/README.md index 24b55ffd..9db36baf 100644 --- a/README.md +++ b/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! -##### 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) + * 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 * Need to limit camera resolution to VGA (due to memory limits) + * New Feature: setting of time server in `config.ini` ``` diff --git a/firmware/html.zip b/firmware/html.zip index 6ced1d3a..0696753d 100644 Binary files a/firmware/html.zip and b/firmware/html.zip differ diff --git a/sd-card/config/config.ini b/sd-card/config/config.ini index a7e80a44..b56a1845 100644 --- a/sd-card/config/config.ini +++ b/sd-card/config/config.ini @@ -59,6 +59,7 @@ LogfileRetentionInDays = 3 [System] TimeZone = CET-1CEST,M3.5.0,M10.5.0/3 +;TimeServer = fritz.box SetupMode = true [Ende] \ No newline at end of file diff --git a/sd-card/config/dig0710s3.tflite b/sd-card/config/dig0710s3.tflite deleted file mode 100644 index db7aaf1c..00000000 Binary files a/sd-card/config/dig0710s3.tflite and /dev/null differ diff --git a/sd-card/html/edit_config_param.html b/sd-card/html/edit_config_param.html index 8383c18f..14b70538 100644 --- a/sd-card/html/edit_config_param.html +++ b/sd-card/html/edit_config_param.html @@ -731,13 +731,13 @@ function WriteConfig(){ ReadParameter(param, "Alignment", "SearchFieldY", false); ReadParameter(param, "Digits", "Model", false); - ReadParameter(param, "Digits", "LogImageLocation", false); - ReadParameter(param, "Digits", "LogfileRetentionInDays", false); + ReadParameter(param, "Digits", "LogImageLocation", true); + ReadParameter(param, "Digits", "LogfileRetentionInDays", true); ReadParameter(param, "Digits", "ModelInputSize", false, false, 2); ReadParameter(param, "Analog", "Model", false); - ReadParameter(param, "Analog", "LogImageLocation", false); - ReadParameter(param, "Analog", "LogfileRetentionInDays", false); + ReadParameter(param, "Analog", "LogImageLocation", true); + ReadParameter(param, "Analog", "LogfileRetentionInDays", true); ReadParameter(param, "Analog", "ModelInputSize", false, false, 2); ReadParameter(param, "PostProcessing", "DecimalShift", true); diff --git a/sd-card/html/gethost.js b/sd-card/html/gethost.js index 90d993d7..7b42038d 100644 --- a/sd-card/html/gethost.js +++ b/sd-card/html/gethost.js @@ -7,9 +7,11 @@ function getbasepath(){ var host = window.location.hostname; 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 = "."; // jomjol interner localhost + } else {