From 19229bc0c3366ef98eb0de8bd21ba761bb7959ff Mon Sep 17 00:00:00 2001 From: Uwe Risse Date: Mon, 7 Nov 2022 17:32:11 +0100 Subject: [PATCH] Assume that the DX Lab Suite Commander always answers with a string. This is to avoid misinterpretations that could lead to crashes. --- Transceiver/DXLabSuiteCommanderTransceiver.cpp | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/Transceiver/DXLabSuiteCommanderTransceiver.cpp b/Transceiver/DXLabSuiteCommanderTransceiver.cpp index a96480662..02f8ad636 100644 --- a/Transceiver/DXLabSuiteCommanderTransceiver.cpp +++ b/Transceiver/DXLabSuiteCommanderTransceiver.cpp @@ -437,12 +437,7 @@ QString DXLabSuiteCommanderTransceiver::command_with_reply (QString const& cmd) }; } - auto result = commander_->readAll (); - // qDebug () << "result: " << result; - // for (int i = 0; i < result.size (); ++i) - // { - // qDebug () << i << ":" << hex << int (result[i]); - // } + QString result = commander_->readAll (); if (result != NULL) {