Сигнал readyRead () в qextserialport не передается

я использую qextserialport для связи с устройством Bluetooth в Windows 8.1. Я определил ComPort учебный класс. Мне нужно сначала написать сообщение {0xA9,0x55} на «COM5», чтобы попросить устройство Bluetooth начать передачу данных. Тогда я могу начать читать данные. У меня есть приложение терминала, которое показывает, что я написал сообщение, и данные доступны на «COM5»

Определение проблемы:

В comport.cpp, ни waitForBytesWritten() ни waitForReadyRead() вернуть true, Количество доступных байтов равно нулю, а onReadyRead() Слот не вызывается. Что не так в моем коде?

comport.h

#ifndef COMPORT_H
#define COMPORT_H

#include <QObject>
#include <QDebug>
#include "qextserialport.h"#include "qextserialenumerator.h"
class QTimer;

class ComPort : public QObject
{
Q_OBJECT

public:
ComPort(const QString &portName);
~ComPort();

private:
QextSerialPort* port;

void     setupPort();private slots:
void onReadyRead();
};

#endif // COMPORT_H

а также comport.cpp

#include "comport.h"ComPort::ComPort(const QString &portName)
{
QString strPort;
this->port = new QextSerialPort(portName);
this->setupPort();

connect(port, SIGNAL(readyRead()), this, SLOT(onReadyRead()));

if (port->open(QIODevice::ReadWrite) == true)
{
const char mydata[] = {static_cast<char>(0xA9),static_cast<char>(0x55)};
QByteArray data = QByteArray::fromRawData(mydata, sizeof(mydata));
port->write(data);
if(port->waitForBytesWritten(100))
qDebug() << "Wrote the message";

QByteArray responseData = port->readAll();
while (port->waitForReadyRead(2000))
responseData += port->readAll();

qDebug() << "Num of bytes: " << port->bytesAvailable();
}
else
{
qDebug() << "Device is not turned on";
}
}

ComPort::~ComPort()
{
delete port;
}

void ComPort::setupPort()
{
port->setBaudRate(BAUD115200);
port->setTimeout(100); // Does nothing in Eventdriven mode!
port->setFlowControl(FLOW_OFF);
port->setParity(PAR_NONE);
port->setDataBits(DATA_8);
port->setStopBits(STOP_1);
port->setQueryMode(QextSerialPort::EventDriven);
}

void ComPort::onReadyRead()
{
QByteArray bytes;
int a = port->bytesAvailable();
bytes.resize(a);
port->read(bytes.data(), bytes.size());
qDebug() << "bytes read:" << bytes.size();
qDebug() << "bytes:" << bytes;
}

0

Решение

Задача ещё не решена.

Другие решения

Других решений пока нет …

По вопросам рекламы [email protected]