我过去曾将这个库用于 Qt4,但我目前正尝试在涉及更多传入数据的项目中使用它。当我尝试在我的程序中连接到正确的 COM 端口时,它显示没有收到任何数据包。当我使用另一个终端程序时,它会显示不断的数据流。经过几次尝试连接到 COM 端口后,我的程序终于连接并正常工作。我需要我的程序能够在收到命令时始终连接到 COM 端口。如果有人对我的代码可能有什么问题有任何想法,我将非常感谢您的帮助。
#include <QtSerialPort/QSerialPort>
#include <QtSerialPort/QSerialPortInfo>
void MainWindow::comportSelected()
{
// If some other serial port is open then close it.
if(serial.isOpen())
serial.close();
if(ui->comportList->currentIndex() != 0)
{
serial.setDataBits(QSerialPort::Data8);
serial.setFlowControl(QSerialPort::NoFlowControl);
serial.setBaudRate(QSerialPort::Baud115200);
serial.setParity(QSerialPort::NoParity);
serial.setPort(comPortList.at(ui->comportList->currentIndex()-1));
if(!serial.open(QIODevice::ReadWrite))
{
QMessageBox::critical(this, tr("Error"), serial.errorString());
ui->console->setEnabled(false);
}
else
{
connect((const QObject*)&serial, SIGNAL(readyRead()), this, SLOT(processPendingSerialData()));
}
}
else serial.close();
}
然后我读到:
void MainWindow::processPendingSerialData()
{
// While there are bytes in the buffer.
while(serial.bytesAvailable() > 0)
{
// Read a byte.
serial.read((char *)&ch, 1);
ETC...