Minor neatness change.

merge-requests/2/head
Elliott Liggett 2021-03-12 23:19:43 -08:00
rodzic 37ca39a8e7
commit 4ddca5da3b
1 zmienionych plików z 0 dodań i 4 usunięć

Wyświetl plik

@ -152,15 +152,12 @@ void commHandler::openPort()
qDebug(logSerial()) << "Opened port: " << portName;
return;
} else {
// debug?
qDebug(logSerial()) << "Could not open serial port " << portName << " , please restart.";
isConnected = false;
serialError = true;
emit haveSerialPortError(portName, "Could not open port. Please restart.");
return;
}
}
void commHandler::closePort()
@ -201,7 +198,6 @@ void commHandler::printHex(const QByteArray &pdata, bool printVert, bool printHo
{
for(int i=0; i < strings.length(); i++)
{
//sdata = QString(strings.at(i));
qDebug(logSerial()) << strings.at(i);
}
}