1
0
mirror of https://github.com/saitohirga/WSJT-X.git synced 2025-03-21 03:28:59 -04:00

Assume that the DX Lab Suite Commander always answers with a string. This is to avoid misinterpretations that could lead to crashes.

This commit is contained in:
Uwe Risse 2022-11-07 17:32:11 +01:00
parent eae509f08d
commit 19229bc0c3

View File

@ -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)
{