-
Notifications
You must be signed in to change notification settings - Fork 414
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fixed several bugs #99
Open
lijinshang
wants to merge
12
commits into
rossmann-engineering:master
Choose a base branch
from
lijinshang:master
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
主机 2023-6-27:修复NumberOfRetries无效错误 if (NumberOfRetries > countRetries) 2023-6-27:修复TCP连接断线无法触发ConnectedChanged的问题 2020-8-15:增加响应延时属性ResposeDelay 事件ResposeDelayChanged 2020-8-11:修正Modbus主机模式下退出报不能为Null异常错误 详见:~ModbusClient() 2020-8-11:修正UDP连接connected属性一直为True的问题 2020-8-2:规范化ReceiveDataChanged(Byte[] data) SendDataChanged(Byte[] data)回调 2020-8-1:增加ModbusType 规范化编程 2020-8-1:增加UDP模式发送回传(全模式支持发送、接收通信数据回传) 2020-7-31:修正Modbus主机模式下连接超时 详见:connectTimeout
从机 2023-6-29:删除numberOfClientsChanged、NumberOfConnectedClientsChanged事件 2020-8-13:解决ModbusUDP无法二次启动问题 关闭未结束线程 listenerThread 2020-8-2:增加ReceiveDataChanged(Byte[] data) SendDataChanged(Byte[] data)回调 2020-8-2:解决从机模式接收数据debug信息全部为00的问题 2020-8-1:增加ModbusType 规范化编程 2020-8-1:解决UDP从机模式关闭后不能打开的问题 2020-7-30:解决ModbusRTU从机模式下数据接收错误的问题 详见:SerialHandler
这 全是整个文件的大改 让人怎么对比你到底改了哪呀 😵 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Fixed several bugs
Using the official name of Modbus: Poll Client
This branch does not provide GUI programs
ModbusClient从机修改版:
删除numberOfClientsChanged、NumberOfConnectedClientsChanged事件
解决ModbusUDP无法二次启动问题 关闭未结束线程 listenerThread
增加ReceiveDataChanged(Byte[] data) SendDataChanged(Byte[] data)回调
解决从机模式接收数据debug信息全部为00的问题
增加ModbusType 规范化编程
解决UDP从机模式关闭后不能打开的问题
解决ModbusRTU从机模式下数据接收错误的问题
ModbusPoll主机修改版:
修复NumberOfRetries无效错误 if (NumberOfRetries > countRetries)
修复TCP连接断线无法触发ConnectedChanged的问题
增加响应延时属性ResposeDelay 事件ResposeDelayChanged
修正Modbus主机模式下退出报不能为Null异常错误 详见:~ModbusClient()
修正UDP连接connected属性一直为True的问题
规范化ReceiveDataChanged(Byte[] data) SendDataChanged(Byte[] data)回调
增加ModbusType 规范化编程
增加UDP模式发送回传(全模式支持发送、接收通信数据回传)
修正Modbus主机模式下连接超时