我正在编写一个 qt 桥以通过 Web 应用程序访问串行热敏打印机。我在设置串行端口设置时遇到问题,这是我的代码:
bool Bridge::printToSerial(QByteArray arr, QString serialPortName, quint16 baud) {
/*
QProcess proc;
QStringList args = QStringList() << QString("mode COM1 BAUD=%1 PARITY=%2 DATA=%3" ).arg(9600).arg( "n" ).arg(8);
proc.start( "cmd.exe", args );
proc.waitForStarted();
proc.close();
*/
QSerialPort* m_port = new QSerialPort(this);
m_port->setPortName(serialPortName); // \\.\COM1
if(!m_port->open(QSerialPort::ReadWrite)) {
qDebug() << "Error serial open";
} else {
if (arr.isEmpty()) {
qDebug() << QObject::tr("Either no data was currently available on the standard input for reading, or an error occurred for port %1, error: %2").arg(serialPortName).arg(m_port->errorString()) << endl;
delete m_port;
return 1;
}
m_port->setBaudRate(baud);
m_port->setDataBits(QSerialPort::Data8);
m_port->setParity(QSerialPort::NoParity);
m_port->setStopBits(QSerialPort::OneStop);
//m_port->setBreakEnabled(true);
qint64 bytesWritten = m_port->write(arr);
if (bytesWritten == -1) {
qDebug() << QObject::tr("Failed to write the data to port %1, error: %2").arg(serialPortName).arg(m_port->errorString()) << endl;
delete m_port;
return 1;
} else if (bytesWritten != arr.size()) {
qDebug() << QObject::tr("Failed to write all the data to port %1, error: %2").arg(serialPortName).arg(m_port->errorString()) << endl;
delete m_port;
return 1;
} else if (!m_port->waitForBytesWritten(500)) {
qDebug() << QObject::tr("Operation timed out or an error occurred for port %1, error: %2").arg(serialPortName).arg(m_port->errorString()) << endl;
delete m_port;
return 1;
}
m_port->close();
delete m_port;
qDebug() << QObject::tr("Data successfully sent to port %1").arg(serialPortName) << endl;
return false;
}
delete m_port;
return true;
}
问题是数据打印但没有完成,这让我觉得数据位没有设置为 8 位。
我执行了命令:mode COM1,它显示端口配置不正确(波特率、位、奇偶校验都错误)。顺便说一句,设备管理器显示端口的默认设置和与 cmd 行不同的结果:“mode COM1”
为了使它工作,我必须在运行程序之前执行 cmd 行:mode COM1 BAUD=9600 PARITY=n DATA=8。或调用 m_port->setBreakEnabled(true); 在我打开端口之后。此调用挂起程序,我必须重新编译 exe 而无法工作。当系统重新启动时,命令行模式显示旧结果(波特率 1200,数据位 7 等)
任何线索为什么我有这种行为?似乎 QSerialPort 无法有效地更改我需要的所有设置。