Compare commits

...

3 Commits

3 changed files with 4 additions and 1 deletions

View File

@ -81,7 +81,9 @@ DEFINES += QT_DEPRECATED_WARNINGS
# Fix the path-names of the json-files and the device-controller.
# Set automatic download of json-file in ATBUpdateTool.ini file for
# a fresh clone of the repository.
VERSION="1.3.23"
# 1.3.23 Added a 'break' to prevent a possible endless loop when checking if
# the device is alive.
VERSION="1.3.24"
# PLANNED TODOS:
# 1: Das Repository wird repariert bwz. neu geklont. Unabhaengig vom WAIT.

BIN
doc/ATBUpdateTool4.pdf Normal file

Binary file not shown.

View File

@ -123,6 +123,7 @@ Update::Update(Worker *worker,
// must deliver 'true', only then are all data from hwapi valid
if (--tries < 0) {
qCritical() << "ERROR!!! DC DATA NOT VALID -> CA-MASTER-PLUGIN NOT CONNECTED";
break;
}
m_hw->dc_autoRequest(true);
QThread::msleep(500);