Browse Source

Add SetSingleCoil

test
nasicurious 3 years ago
parent
commit
0a12dd085d
  1. 7
      Servo/include/ModbusMaster.h
  2. 5
      Servo/include/ModbusWrapper.h
  3. 58
      Servo/src/ModbusMaster.cpp
  4. 33
      Servo/src/ModbusWrapper.cpp
  5. 8
      Test/MainWindow.cpp
  6. 1
      Test/MainWindow.h
  7. 127
      Test/MainWindow.ui

7
Servo/include/ModbusMaster.h

@ -21,6 +21,8 @@ private:
QModbusClient* _modbusDevice = nullptr;
int _clientAddress;
QModbusDataUnit _modbusReplyUnit;
QBitArray _coilsToWrite;
QVector<quint16> _RegistersToWrite;
public:
explicit ModbusMaster(QObject* parent = nullptr);
@ -29,7 +31,9 @@ public:
int startAddress,
quint16 readSize);
void checkForError(QModbusReply* _reply);
void modbusReplyRecieved();
void writeRequest(QModbusDataUnit::RegisterType registerType,
int startAddress,
quint16 writeSize);
//uncrustify off
public slots:
@ -42,6 +46,7 @@ public slots:
QBitArray getInputCoil(int startAddress, quint16 readSize);
QVector<quint16> getHoldingRegister(int startAddress, quint16 readSize);
QVector<quint16> getInputRegister(int startAddress, quint16 readSize);
void setSingleCoil(int startAddress, bool coilFlag);
};
#endif //MODBUSMASTER_H

5
Servo/include/ModbusWrapper.h

@ -21,11 +21,14 @@ public:
~ModbusWrapper();
void connectToDevice(ModbusConfig modbusConfig);
void init();
QBitArray getCoil(int startAddress, quint16 readSize);
QBitArray getInputCoil(int startAddress, quint16 readSize);
QVector<quint16> getHoldingRegister(int startAddress, quint16 readSize);
QVector<quint16> getInputRegister(int startAddress, quint16 readSize);
void setSingleCoil(int startAddress, bool coilFlag);
signals:
void connectOrder(ModbusConfig modbusConfig);
void initOrder();
@ -35,6 +38,8 @@ signals:
quint16 readSize);
QVector<quint16> getInputRegisterOrder(int startAddress, quint16 readSize);
void setSingleCoilOrder(int startAddress, bool coilFlag);
//uncrustify off
public slots:
//uncrustify on

58
Servo/src/ModbusMaster.cpp

@ -29,8 +29,6 @@ void ModbusMaster::init()
{
throw ServoException("Modbus Device Created Before Handle it");
}
qDebug() << "internal init";
}
/*************************************************************************************************/
@ -66,8 +64,6 @@ void ModbusMaster::connectionStateChanged(QModbusDevice::State state)
{
throw ServoException("Connection wasnt prepared");
}
qDebug() << "internal connect";
}
/*************************************************************************************************/
@ -174,6 +170,26 @@ QVector<quint16> ModbusMaster::getInputRegister(int startAddress, quint16 readSi
}
}
/*************************************************************************************************/
void ModbusMaster::setSingleCoil(int startAddress, bool coilFlag)
{
try
{
_coilsToWrite.resize(1);
if(coilFlag)
_coilsToWrite.setBit(0);
else
_coilsToWrite.clearBit(0);
writeRequest(QModbusDataUnit::RegisterType::Coils, startAddress, 1);
}
catch(const ServoException& ex)
{
qDebug() << ex.what();
}
}
/*************************************************************************************************/
void ModbusMaster::readRequest(QModbusDataUnit::RegisterType registerType,
int startAddress,
@ -229,15 +245,41 @@ void ModbusMaster::checkForError(QModbusReply* _reply)
}
}
void ModbusMaster::modbusReplyRecieved()
/*************************************************************************************************/
void ModbusMaster::writeRequest(QModbusDataUnit::RegisterType registerType,
int startAddress,
quint16 writeSize)
{
auto reply = qobject_cast<QModbusReply*>(sender());
auto table = registerType;
QModbusDataUnit writeUnit = QModbusDataUnit(table, startAddress, writeSize);
for(int i = 0; i < writeUnit.valueCount(); i++)
{
if(table == QModbusDataUnit::Coils)
writeUnit.setValue(i, _coilsToWrite[i]);
else
writeUnit.setValue(i, _RegistersToWrite[i]);
}
if(!reply)
return;
if(auto* reply = _modbusDevice->sendWriteRequest(writeUnit, _clientAddress))
{
if(!reply->isFinished())
{
QEventLoop loop;
connect(reply, &QModbusReply::finished, &loop,
&QEventLoop::quit
);
loop.exec();
checkForError(reply);
_modbusReplyUnit = reply->result();
reply->deleteLater();
}
else
delete reply; //broadcast replies return immediately
}
else
{
throw ServoException(_modbusDevice->errorString());
}
}

33
Servo/src/ModbusWrapper.cpp

@ -54,6 +54,12 @@ void ModbusWrapper::init()
&ModbusMaster::getInputRegister,
Qt::BlockingQueuedConnection);
connect(this,
&ModbusWrapper::setSingleCoilOrder,
&_modbusMaster,
&ModbusMaster::setSingleCoil,
Qt::BlockingQueuedConnection);
emit initOrder();
qDebug() << "init done";
@ -62,44 +68,35 @@ void ModbusWrapper::init()
/*************************************************************************************************/
QBitArray ModbusWrapper::getCoil(int startAddress, quint16 readSize)
{
auto result = emit getCoilOrder(startAddress, readSize);
qDebug() << "getCoil done";
return result;
return emit getCoilOrder(startAddress, readSize);
}
/*************************************************************************************************/
QBitArray ModbusWrapper::getInputCoil(int startAddress, quint16 readSize)
{
auto result = emit getInputCoilOrder(startAddress, readSize);
qDebug() << "getInputCoilOrder done";
return result;
return emit getInputCoilOrder(startAddress, readSize);
}
/*************************************************************************************************/
QVector<quint16> ModbusWrapper::getHoldingRegister(int startAddress, quint16 readSize)
{
auto result = emit getHoldingRegisterOrder(startAddress, readSize);
qDebug() << "getHoldingRegister done";
return result;
return emit getHoldingRegisterOrder(startAddress, readSize);
}
/*************************************************************************************************/
QVector<quint16> ModbusWrapper::getInputRegister(int startAddress, quint16 readSize)
{
auto result = emit getInputRegisterOrder(startAddress, readSize);
qDebug() << "getInputRegister done";
return emit getInputRegisterOrder(startAddress, readSize);
}
return result;
/*************************************************************************************************/
void ModbusWrapper::setSingleCoil(int startAddress, bool coilFlag)
{
emit setSingleCoilOrder(startAddress, coilFlag);
}
/*************************************************************************************************/
void ModbusWrapper::connectToDevice(ModbusConfig modbusConfig)
{
emit connectOrder(modbusConfig);
qDebug() << "connect done";
}
/*************************************************************************************************/

8
Test/MainWindow.cpp

@ -94,3 +94,11 @@ void MainWindow::printRegisterDataFromClient(QVector<quint16> uiHoldingRegisters
}
ui->textEditRead->setText(readedData);
}
void MainWindow::on_writeSingleCoil_clicked()
{
int startAddress = ui->writeSingleCoilAddress->text().toInt();
QBitArray uiCoils;
uiCoils.resize(1);
modbusWrapper.setSingleCoil(startAddress, ui->coilData->isChecked());
}

1
Test/MainWindow.h

@ -31,6 +31,7 @@ private slots:
void on_connect_clicked();
//uncrustify on
void on_readButton_clicked();
void on_writeSingleCoil_clicked();
};
#endif //MAINWINDOW_H

127
Test/MainWindow.ui

@ -17,8 +17,8 @@
<widget class="QPushButton" name="connect">
<property name="geometry">
<rect>
<x>360</x>
<y>30</y>
<x>40</x>
<y>10</y>
<width>89</width>
<height>25</height>
</rect>
@ -76,8 +76,8 @@
<widget class="QLabel" name="label_6">
<property name="geometry">
<rect>
<x>43</x>
<y>430</y>
<x>160</x>
<y>10</y>
<width>41</width>
<height>25</height>
</rect>
@ -86,11 +86,56 @@
<string>Table:</string>
</property>
</widget>
<widget class="QComboBox" name="writeTable">
<property name="geometry">
<rect>
<x>207</x>
<y>10</y>
<width>86</width>
<height>25</height>
</rect>
</property>
</widget>
<widget class="QLabel" name="label_9">
<property name="geometry">
<rect>
<x>40</x>
<y>167</y>
<width>126</width>
<height>17</height>
</rect>
</property>
<property name="text">
<string>Result:</string>
</property>
</widget>
<widget class="QGroupBox" name="groupBox">
<property name="geometry">
<rect>
<x>10</x>
<y>70</y>
<width>311</width>
<height>381</height>
</rect>
</property>
<property name="title">
<string>Read Data From Device</string>
</property>
<widget class="QTextEdit" name="textEditRead">
<property name="geometry">
<rect>
<x>20</x>
<y>120</y>
<width>257</width>
<height>221</height>
</rect>
</property>
</widget>
<widget class="QPushButton" name="readButton">
<property name="geometry">
<rect>
<x>345</x>
<y>430</y>
<x>100</x>
<y>350</y>
<width>80</width>
<height>25</height>
</rect>
@ -105,39 +150,79 @@
<string>Read</string>
</property>
</widget>
<widget class="QComboBox" name="writeTable">
</widget>
<widget class="QGroupBox" name="groupBox_2">
<property name="geometry">
<rect>
<x>90</x>
<y>430</y>
<width>86</width>
<x>340</x>
<y>70</y>
<width>191</width>
<height>111</height>
</rect>
</property>
<property name="title">
<string>Write Single Coil</string>
</property>
<widget class="QCheckBox" name="coilData">
<property name="geometry">
<rect>
<x>10</x>
<y>20</y>
<width>61</width>
<height>23</height>
</rect>
</property>
<property name="text">
<string>Coil</string>
</property>
</widget>
<widget class="QLineEdit" name="writeSingleCoilAddress">
<property name="geometry">
<rect>
<x>70</x>
<y>40</y>
<width>113</width>
<height>25</height>
</rect>
</property>
</widget>
<widget class="QLabel" name="label_9">
<widget class="QLabel" name="label_7">
<property name="geometry">
<rect>
<x>40</x>
<y>167</y>
<width>126</width>
<height>17</height>
<x>10</x>
<y>40</y>
<width>71</width>
<height>26</height>
</rect>
</property>
<property name="text">
<string>Result:</string>
<string>address:</string>
</property>
</widget>
<widget class="QTextEdit" name="textEditRead">
<widget class="QPushButton" name="writeSingleCoil">
<property name="geometry">
<rect>
<x>40</x>
<y>200</y>
<width>257</width>
<height>221</height>
<x>20</x>
<y>70</y>
<width>141</width>
<height>25</height>
</rect>
</property>
<property name="text">
<string>Write Single Coil</string>
</property>
</widget>
</widget>
<zorder>groupBox</zorder>
<zorder>connect</zorder>
<zorder>label_5</zorder>
<zorder>label_4</zorder>
<zorder>startAddress</zorder>
<zorder>readSize</zorder>
<zorder>label_6</zorder>
<zorder>writeTable</zorder>
<zorder>label_9</zorder>
<zorder>groupBox_2</zorder>
</widget>
<widget class="QMenuBar" name="menubar">
<property name="geometry">

Loading…
Cancel
Save