|
|
@ -8,8 +8,9 @@ ModbusMaster::ModbusMaster(QObject* parent) : QObject(parent) |
|
|
|
} |
|
|
|
|
|
|
|
/*************************************************************************************************/ |
|
|
|
void ModbusMaster::init() |
|
|
|
void ModbusMaster::init(ExpConfig& expConfig) |
|
|
|
{ |
|
|
|
try { |
|
|
|
if(!_initialized) |
|
|
|
{ |
|
|
|
_modbusDevice = nullptr; |
|
|
@ -20,20 +21,39 @@ void ModbusMaster::init() |
|
|
|
throw ServoException(_modbusDevice->errorString()); |
|
|
|
}); |
|
|
|
|
|
|
|
connect(_modbusDevice, &QModbusDevice::stateChanged, this, |
|
|
|
connect(_modbusDevice, |
|
|
|
&QModbusClient::stateChanged, |
|
|
|
this, |
|
|
|
&ModbusMaster::connectionStateChanged); |
|
|
|
|
|
|
|
_initialized = true; |
|
|
|
} |
|
|
|
else |
|
|
|
{ |
|
|
|
throw ServoException("Modbus Device Created Before Handle it"); |
|
|
|
throw ServoException( |
|
|
|
"Modbus Device Object Created Before First Delete it Then Make New One"); |
|
|
|
} |
|
|
|
} |
|
|
|
catch(const ServoException& ex) |
|
|
|
{ |
|
|
|
expConfig.valid = true; |
|
|
|
expConfig.message = ex.getMessage(); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
/*************************************************************************************************/ |
|
|
|
void ModbusMaster::connectionStateChanged(QModbusDevice::State state) |
|
|
|
{ |
|
|
|
if(state == QModbusDevice::UnconnectedState) |
|
|
|
{ |
|
|
|
throw ServoException("Connection wasnt prepared"); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
/*************************************************************************************************/ |
|
|
|
void ModbusMaster::connectToDevice(ModbusConfig modbusConfig) |
|
|
|
void ModbusMaster::connectToDevice(ModbusConfig modbusConfig, ExpConfig& expConfig) |
|
|
|
{ |
|
|
|
try { |
|
|
|
if(_modbusDevice->state() != QModbusDevice::ConnectedState) |
|
|
|
{ |
|
|
|
_clientAddress = modbusConfig.clientAddress; |
|
|
@ -48,6 +68,7 @@ void ModbusMaster::connectToDevice(ModbusConfig modbusConfig) |
|
|
|
_modbusDevice->setConnectionParameter(QModbusDevice::SerialStopBitsParameter, |
|
|
|
modbusConfig.stopBits); |
|
|
|
_modbusDevice->setTimeout(modbusConfig.responseTime); |
|
|
|
|
|
|
|
_modbusDevice->setNumberOfRetries(modbusConfig.numberOfRetries); |
|
|
|
|
|
|
|
if(!_modbusDevice->connectDevice()) |
|
|
@ -56,13 +77,10 @@ void ModbusMaster::connectToDevice(ModbusConfig modbusConfig) |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
/*************************************************************************************************/ |
|
|
|
void ModbusMaster::connectionStateChanged(QModbusDevice::State state) |
|
|
|
{ |
|
|
|
if(state == QModbusDevice::UnconnectedState) |
|
|
|
catch(const ServoException& ex) |
|
|
|
{ |
|
|
|
throw ServoException("Connection wasnt prepared"); |
|
|
|
expConfig.valid = true; |
|
|
|
expConfig.message = ex.getMessage(); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
@ -90,12 +108,12 @@ QBitArray ModbusMaster::getCoil(int startAddress, quint16 readSize, ExpConfig& e |
|
|
|
catch(const ServoException& ex) |
|
|
|
{ |
|
|
|
expConfig.valid = true; |
|
|
|
expConfig.message = ex.what(); |
|
|
|
expConfig.message = ex.getMessage(); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
/*************************************************************************************************/ |
|
|
|
QBitArray ModbusMaster::getInputCoil(int startAddress, quint16 readSize) |
|
|
|
QBitArray ModbusMaster::getInputCoil(int startAddress, quint16 readSize, ExpConfig& expConfig) |
|
|
|
{ |
|
|
|
try |
|
|
|
{ |
|
|
@ -117,12 +135,15 @@ QBitArray ModbusMaster::getInputCoil(int startAddress, quint16 readSize) |
|
|
|
} |
|
|
|
catch(const ServoException& ex) |
|
|
|
{ |
|
|
|
qDebug() << ex.what(); |
|
|
|
expConfig.valid = true; |
|
|
|
expConfig.message = ex.getMessage(); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
/*************************************************************************************************/ |
|
|
|
QVector<quint16> ModbusMaster::getHoldingRegister(int startAddress, quint16 readSize) |
|
|
|
QVector<quint16> ModbusMaster::getHoldingRegister(int startAddress, |
|
|
|
quint16 readSize, |
|
|
|
ExpConfig& expConfig) |
|
|
|
{ |
|
|
|
try |
|
|
|
{ |
|
|
@ -142,12 +163,15 @@ QVector<quint16> ModbusMaster::getHoldingRegister(int startAddress, quint16 read |
|
|
|
} |
|
|
|
catch(const ServoException& ex) |
|
|
|
{ |
|
|
|
qDebug() << ex.what(); |
|
|
|
expConfig.valid = true; |
|
|
|
expConfig.message = ex.getMessage(); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
/*************************************************************************************************/ |
|
|
|
QVector<quint16> ModbusMaster::getInputRegister(int startAddress, quint16 readSize) |
|
|
|
QVector<quint16> ModbusMaster::getInputRegister(int startAddress, |
|
|
|
quint16 readSize, |
|
|
|
ExpConfig& expConfig) |
|
|
|
{ |
|
|
|
try |
|
|
|
{ |
|
|
@ -167,12 +191,13 @@ QVector<quint16> ModbusMaster::getInputRegister(int startAddress, quint16 readSi |
|
|
|
} |
|
|
|
catch(const ServoException& ex) |
|
|
|
{ |
|
|
|
qDebug() << ex.what(); |
|
|
|
expConfig.valid = true; |
|
|
|
expConfig.message = ex.getMessage(); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
/*************************************************************************************************/ |
|
|
|
void ModbusMaster::setSingleCoil(int startAddress, bool coilFlag) |
|
|
|
void ModbusMaster::setSingleCoil(int startAddress, bool coilFlag, ExpConfig& expConfig) |
|
|
|
{ |
|
|
|
try |
|
|
|
{ |
|
|
@ -187,11 +212,16 @@ void ModbusMaster::setSingleCoil(int startAddress, bool coilFlag) |
|
|
|
} |
|
|
|
catch(const ServoException& ex) |
|
|
|
{ |
|
|
|
qDebug() << ex.what(); |
|
|
|
expConfig.valid = true; |
|
|
|
expConfig.message = ex.getMessage(); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
void ModbusMaster::setMultipleCoil(int startAddress, quint16 writeSize, QBitArray coilFlags) |
|
|
|
/*************************************************************************************************/ |
|
|
|
void ModbusMaster::setMultipleCoil(int startAddress, |
|
|
|
quint16 writeSize, |
|
|
|
QBitArray coilFlags, |
|
|
|
ExpConfig& expConfig) |
|
|
|
{ |
|
|
|
try |
|
|
|
{ |
|
|
@ -200,11 +230,13 @@ void ModbusMaster::setMultipleCoil(int startAddress, quint16 writeSize, QBitArra |
|
|
|
} |
|
|
|
catch(const ServoException& ex) |
|
|
|
{ |
|
|
|
qDebug() << ex.what(); |
|
|
|
expConfig.valid = true; |
|
|
|
expConfig.message = ex.getMessage(); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
void ModbusMaster::setSingleRegister(int startAddress, quint16 registerValue) |
|
|
|
/*************************************************************************************************/ |
|
|
|
void ModbusMaster::setSingleRegister(int startAddress, quint16 registerValue, ExpConfig& expConfig) |
|
|
|
{ |
|
|
|
try |
|
|
|
{ |
|
|
@ -214,14 +246,15 @@ void ModbusMaster::setSingleRegister(int startAddress, quint16 registerValue) |
|
|
|
} |
|
|
|
catch(const ServoException& ex) |
|
|
|
{ |
|
|
|
qDebug() << ex.what(); |
|
|
|
expConfig.valid = true; |
|
|
|
expConfig.message = ex.getMessage(); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
/*************************************************************************************************/ |
|
|
|
void ModbusMaster::setMultipleRegister(int startAddress, |
|
|
|
quint16 writeSize, |
|
|
|
QVector<quint16> registerValues) |
|
|
|
QVector<quint16> registerValues, ExpConfig& expConfig) |
|
|
|
{ |
|
|
|
try |
|
|
|
{ |
|
|
@ -230,7 +263,8 @@ void ModbusMaster::setMultipleRegister(int startAddress, |
|
|
|
} |
|
|
|
catch(const ServoException& ex) |
|
|
|
{ |
|
|
|
qDebug() << ex.what(); |
|
|
|
expConfig.valid = true; |
|
|
|
expConfig.message = ex.getMessage(); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
@ -277,15 +311,15 @@ void ModbusMaster::checkForError(QModbusReply* _reply) |
|
|
|
|
|
|
|
if(_reply->error() == QModbusDevice::ProtocolError) |
|
|
|
{ |
|
|
|
throw ServoException(tr("Read response error: %1 (Mobus exception: 0x%2)"). |
|
|
|
arg(_reply->errorString()). |
|
|
|
arg(_reply->rawResult().exceptionCode(), -1, 16)); |
|
|
|
throw ServoException(QString("Read response error: %1 (Mobus exception: %2)") |
|
|
|
.arg(_reply->errorString()) |
|
|
|
.arg(_reply->rawResult().exceptionCode())); |
|
|
|
} |
|
|
|
else |
|
|
|
{ |
|
|
|
throw ServoException(tr("Read response error: %1 (code: 0x%2)"). |
|
|
|
arg(_reply->errorString()). |
|
|
|
arg(_reply->error(), -1, 16)); |
|
|
|
throw ServoException(QString("Read response error: %1 (code: %2)") |
|
|
|
.arg(_reply->errorString()) |
|
|
|
.arg(_reply->error())); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
@ -327,3 +361,10 @@ void ModbusMaster::writeRequest(QModbusDataUnit::RegisterType registerType, |
|
|
|
throw ServoException(_modbusDevice->errorString()); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
void ModbusMaster::close() |
|
|
|
{ |
|
|
|
if(_modbusDevice) |
|
|
|
_modbusDevice->disconnectDevice(); |
|
|
|
delete _modbusDevice; |
|
|
|
} |
|
|
|