我过去曾使用过这个库用于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);
等...
答案 0 :(得分:1)
首先,您的代码看起来完美无瑕。我认为没有问题。
话虽这么说,我在使用虚拟COM端口时遇到了类似的问题。问题是readyRead信号实现是特定于设备驱动程序的。尝试运行强制线连接,看看是否能解决问题。