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() = default
QModbusExceptionResponse(const QModbusPdu &pdu)
QModbusExceptionResponse(FunctionCode code, ExceptionCode ec)
void setExceptionCode(ExceptionCode ec)

Reimplemented Public Functions

virtual void setFunctionCode(FunctionCode c)

Additional Inherited Members

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

[default] QModbusExceptionResponse::QModbusExceptionResponse()

Constructs an invalid QModbusExceptionResponse.

QModbusExceptionResponse::QModbusExceptionResponse(const QModbusPdu &pdu)

Constructs a copy of pdu.

QModbusExceptionResponse::QModbusExceptionResponse(FunctionCode code, ExceptionCode ec)

Constructs a QModbusExceptionResponse with function code set to code and exception error code set to ec.

void QModbusExceptionResponse::setExceptionCode(ExceptionCode ec)

Sets the response's exception code to ec.

[virtual] void QModbusExceptionResponse::setFunctionCode(FunctionCode c)

Reimplemented from QModbusPdu::setFunctionCode().

Sets the response's function code to c.

© 2018 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.