mirror of
https://github.com/jomjol/AI-on-the-edge-device.git
synced 2025-12-08 12:36:52 +03:00
v7.1.1
This commit is contained in:
@@ -46,14 +46,12 @@ In other cases you can contact the developer via email: <img src="https://raw.gi
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
##### 7.1.0 MQTT-Update - (2021-05-28)
|
##### 7.1.1 MQTT-Update - (2021-05-28)
|
||||||
|
|
||||||
|
* NEW: 7.1.1: bug fix wlan password with "=" (again)
|
||||||
* MQTT error message: changes "no error", send retain flag
|
* MQTT error message: changes "no error", send retain flag
|
||||||
|
|
||||||
* Update wlan handling to esp-idf 4.1
|
* Update wlan handling to esp-idf 4.1
|
||||||
|
|
||||||
* Upgrade digital CNN to v8.7.0 (added new images)
|
* Upgrade digital CNN to v8.7.0 (added new images)
|
||||||
|
|
||||||
* Bug fix: MQTT, WLAN, LED-Controll, GPIO usage, fixed IP, calculation flow rate
|
* Bug fix: MQTT, WLAN, LED-Controll, GPIO usage, fixed IP, calculation flow rate
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -70,7 +70,7 @@ void LoadWlanFromFile(std::string fn, char *&_ssid, char *&_password, char *&_ho
|
|||||||
zerlegt = ZerlegeZeile(line, "=");
|
zerlegt = ZerlegeZeile(line, "=");
|
||||||
zerlegt[0] = trim(zerlegt[0], " ");
|
zerlegt[0] = trim(zerlegt[0], " ");
|
||||||
for (int i = 2; i < zerlegt.size(); ++i)
|
for (int i = 2; i < zerlegt.size(); ++i)
|
||||||
zerlegt[1] = zerlegt[1] + zerlegt[i];
|
zerlegt[1] = zerlegt[1] + "=" + zerlegt[i];
|
||||||
|
|
||||||
if ((zerlegt.size() > 1) && (toUpper(zerlegt[0]) == "HOSTNAME")){
|
if ((zerlegt.size() > 1) && (toUpper(zerlegt[0]) == "HOSTNAME")){
|
||||||
hostname = trim(zerlegt[1]);
|
hostname = trim(zerlegt[1]);
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
const char* GIT_REV="a000252";
|
const char* GIT_REV="6cefc44";
|
||||||
const char* GIT_TAG="";
|
const char* GIT_TAG="v7.1.0";
|
||||||
const char* GIT_BRANCH="master";
|
const char* GIT_BRANCH="master";
|
||||||
const char* BUILD_TIME="2021-05-28 19:54";
|
const char* BUILD_TIME="2021-05-30 21:47";
|
||||||
@@ -13,7 +13,7 @@ extern "C"
|
|||||||
#include "Helper.h"
|
#include "Helper.h"
|
||||||
#include <fstream>
|
#include <fstream>
|
||||||
|
|
||||||
const char* GIT_BASE_BRANCH = "master - v7.1.0 - 2020-05-28";
|
const char* GIT_BASE_BRANCH = "master - v7.1.1 - 2020-05-30";
|
||||||
|
|
||||||
|
|
||||||
const char* git_base_branch(void)
|
const char* git_base_branch(void)
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
const char* GIT_REV="a000252";
|
const char* GIT_REV="6cefc44";
|
||||||
const char* GIT_TAG="";
|
const char* GIT_TAG="v7.1.0";
|
||||||
const char* GIT_BRANCH="master";
|
const char* GIT_BRANCH="master";
|
||||||
const char* BUILD_TIME="2021-05-28 19:53";
|
const char* BUILD_TIME="2021-05-30 21:47";
|
||||||
Binary file not shown.
Binary file not shown.
Reference in New Issue
Block a user