QModbusRtuSerialSlave Class
The QModbusRtuSerialSlave class represents a Modbus server that uses a serial port for its communication with the Modbus client. 更多...
头文件: | #include <QModbusRtuSerialSlave> |
qmake: | QT += serialbus |
开始支持版本: | Qt 5.8 |
基类: | QModbusServer |
公有函数
QModbusRtuSerialSlave(QObject *parent = nullptr) | |
~QModbusRtuSerialSlave() |
重新实现的公有函数
virtual bool | processesBroadcast() const override |
- 10 个公有函数继承自 QModbusServer
- 7 个公有函数继承自 QModbusDevice
- 32 个公有函数继承自 QObject
重新实现的受保护函数
virtual void | close() override |
virtual bool | open() override |
virtual QModbusResponse | processRequest(const QModbusPdu &request) override |
- 4 个受保护的函数继承自 QModbusServer
- 4 个受保护的函数继承自 QModbusDevice
- 9 个受保护的函数继承自 QObject
其他继承的成员
- 1 个属性继承自 QObject
- 1 个公有槽函数继承自 QObject
- 1 个信号继承自 QModbusServer
- 2 个信号继承自 QModbusDevice
- 2 个信号继承自 QObject
- 1 个公有变量继承自 QObject
- 10 个静态公有成员继承自 QObject
- 4 个受保护的函数继承自 QModbusServer
- 4 个受保护的函数继承自 QModbusDevice
- 9 个受保护的函数继承自 QObject
- 2 个受保护的变量继承自 QObject
详细描述
The QModbusRtuSerialSlave class represents a Modbus server that uses a serial port for its communication with the Modbus client.
Communication via Modbus requires the interaction between a single Modbus client instance and multiple Modbus server. This class provides the Modbus server implementation via a serial port.
Since multiple Modbus server instances can interact with a Modbus client at the same time (using a serial bus), servers are identified by their serverAddress().
成员函数
QModbusRtuSerialSlave::QModbusRtuSerialSlave(QObject *parent = nullptr)
Constructs a QModbusRtuSerialSlave with the specified parent. The serverAddress preset is 1
.
QModbusRtuSerialSlave::~QModbusRtuSerialSlave()
Destroys the QModbusRtuSerialSlave instance.
[override virtual protected]
void QModbusRtuSerialSlave::close()
Reimplemented from QModbusDevice::close().
[override virtual protected]
bool QModbusRtuSerialSlave::open()
Reimplemented from QModbusDevice::open().
Note: When calling this function, existing buffered data is removed from the serial port.
[override virtual protected]
QModbusResponse QModbusRtuSerialSlave::processRequest(const QModbusPdu &request)
Reimplemented from QModbusServer::processRequest().
Processes the Modbus client request specified by request and returns a Modbus response.
The Modbus function QModbusRequest::EncapsulatedInterfaceTransport with MEI Type 13 (0x0D) CANopen General Reference is filtered out because it is usually Modbus TCP or Modbus serial ASCII only.
A request to the RTU serial slave will be answered with a Modbus exception response with the exception code QModbusExceptionResponse::IllegalFunction.
[override virtual]
bool QModbusRtuSerialSlave::processesBroadcast() const
Reimplemented from QModbusServer::processesBroadcast().