QModbusExceptionResponse Class
QModbusExceptionResponse is a container class containing the function and error code inside a Modbus ADU. More...
Header: | #include <QModbusExceptionResponse> |
qmake: | QT += serialbus |
Since: | Qt 5.8 |
Inherits: | QModbusResponse |
Public Functions
QModbusExceptionResponse() | |
QModbusExceptionResponse(const QModbusPdu &pdu) | |
QModbusExceptionResponse(QModbusPdu::FunctionCode code, QModbusPdu::ExceptionCode ec) | |
void | setExceptionCode(QModbusPdu::ExceptionCode ec) |
Reimplemented Public Functions
virtual void | setFunctionCode(QModbusPdu::FunctionCode c) |
- 11 public functions inherited from QModbusPdu
Additional Inherited Members
- 3 static public members inherited from QModbusResponse
- 1 protected function inherited from QModbusPdu
Detailed Description
QModbusExceptionResponse is a container class containing the function and error code inside a Modbus ADU.
A typical QModbusExceptionResponse response can looks like this:
QModbusExceptionResponse exception(QModbusExceptionResponse::ReportServerId, QModbusExceptionResponse::ServerDeviceFailure);
Member Function Documentation
QModbusExceptionResponse::QModbusExceptionResponse()
Constructs an invalid QModbusExceptionResponse.
QModbusExceptionResponse::QModbusExceptionResponse(const QModbusPdu &pdu)
Constructs a copy of pdu.
QModbusExceptionResponse::QModbusExceptionResponse(QModbusPdu::FunctionCode code, QModbusPdu::ExceptionCode ec)
Constructs a QModbusExceptionResponse with function code set to code and exception error code set to ec.
void QModbusExceptionResponse::setExceptionCode(QModbusPdu::ExceptionCode ec)
Sets the response's exception code to ec.
[virtual]
void QModbusExceptionResponse::setFunctionCode(QModbusPdu::FunctionCode c)
Reimplemented from QModbusPdu::setFunctionCode().
Sets the response's function code to c.
© 2019 The Qt Company Ltd. Documentation contributions included herein are the copyrights of their respective owners. The documentation provided herein is licensed under the terms of the GNU Free Documentation License version 1.3 as published by the Free Software Foundation. Qt and respective logos are trademarks of The Qt Company Ltd. in Finland and/or other countries worldwide. All other trademarks are property of their respective owners.