Skip to content

Commit 17576e3

Browse files
committed
Fix save/export device issue on server-side
1 parent 1972df7 commit 17576e3

File tree

14 files changed

+21
-5
lines changed

14 files changed

+21
-5
lines changed

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
## Overview
44

55
Modbus Tools is set of program (client and server) with graphical user interface to work with standard Modbus Protocol. Modbus Tools are a free, open-source tools with a simple user interface written in C++/Qt. It implements TCP, RTU and ASCII versions of Modbus Protocol.
6+
67
Software implements such Modbus functions as:
78
* 1 (0x01) – `READ_COILS`;
89
* 2 (0x02) – `READ_DISCRETE_INPUTS`;
@@ -17,13 +18,16 @@ Software implements such Modbus functions as:
1718
## About Modbus Client
1819

1920
The client implements access to a remote Modbus device. However, the client can work not only with one device, but with several devices that can be connected to a single network, which is especially useful when working with RTU and ASCII protocols, when access to all Modbus servers is realized through a single serial port. However, it can also be useful when using the TCP version of the protocol, for example, if you use the TCP->RTU bridge.
21+
2022
All work is done within a single project. The main entities in the project are Port, Device and DataViewItem. Port contains network settings for both TCP/IP and serial ports. Device contains settings for a single device (such as Modbus Unit Address, etc.). The DataViewItem contains a single data unit to be read from the remote device and has many formats to represent the current data.
2123
![ModbusClient-img001](https://github.com/serhmarch/ModbusTools/assets/10882627/93fccbad-3eca-415f-8454-c0e8cd890d51)
2224

2325
## About Modbus Server
2426

2527
The server implements Modbus server device and works like Modbus simulator. However, the server can not only simulate single device, but can simulate several devices that can be connected to a single network, which is especially useful when working with RTU and ASCII protocols, when access to all Modbus servers is realized through a single serial port. However, it can also be useful to simulate Modbus network using the TCP version of the protocol, for example, if you use the TCP->RTU bridge, Modbus server can replace this bridge with remote devices for testing purposes.
28+
2629
All work is performing within a single project. The main entities in the project are Port, Device, DataViewItem and Action. Port contains network settings for both TCP/IP and serial ports. Device contains settings for a single device (such as Modbus Unit Address, memory size etc). The DataViewItem contains a single data unit to be read/write from the device and has many formats to represent the current data. Action provides simulation capabilities (automatic change of device memory values).
30+
2731
![ModbusServer-img001](https://github.com/serhmarch/ModbusTools/assets/10882627/e53d9d87-1b77-4f8c-9ad9-1b4c967219c7)
2832

2933
## Binary

bin/Ubuntu/x64/libcore.so

0 Bytes
Binary file not shown.

bin/Ubuntu/x64/libcore.so.0

0 Bytes
Binary file not shown.

bin/Ubuntu/x64/libcore.so.0.1

0 Bytes
Binary file not shown.

bin/Ubuntu/x64/server

-88 Bytes
Binary file not shown.

bin/Windows/x64/client.exe

0 Bytes
Binary file not shown.

bin/Windows/x64/core.dll

0 Bytes
Binary file not shown.

bin/Windows/x64/server.exe

-512 Bytes
Binary file not shown.

bugfix.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,3 +16,7 @@ typedef QAtomicInt RefCount_t;
1616
...
1717
mb::RefCount_t m_refCount;
1818
```
19+
20+
# 0.1.2
21+
22+
Fix server-side bug when saving/exporting device

0 commit comments

Comments
 (0)