8000 Tags · markdawn/pymodbus · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Tags: markdawn/pymodbus

Tags

v2.1.0

Toggle v2.1.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Merge pull request pymodbus-dev#348 from riptideio/dev

v2.1.0

v2.0.1

Toggle v2.0.1's commit message
bump version to 2.0.1

v2.0.0

Toggle v2.0.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Merge pull request pymodbus-dev#301 from riptideio/dev

Pymodbus V2.0.0

v2.0.0rc2

Toggle v2.0.0rc2's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Merge pull request pymodbus-dev#329 from riptideio/pymodbus-repl

Pymodbus repl

v1.5.2.post0

Toggle v1.5.2.post0's commit message
Temporary work around pymodbus-dev#307 (works only if timeout>0.2s)

v1.5.2

Toggle v1.5.2's commit message
Fix pymodbus-dev#302, bump version to 1.5.2. update readme and changelo

v2.0.0rc1

Toggle v2.0.0rc1's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Merge pull request pymodbus-dev#246 from riptideio/async

Redesign Async client implementation with support to tornado and asyncio

v1.5.1

Toggle v1.5.1's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Merge pull request pymodbus-dev#300 from riptideio/dev

pymodbus v1.5.1

v1.5.0

Toggle v1.5.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
pymodbus 1.5.0 (pymodbus-dev#294)

* Improve transaction speeds for sync clients (RTU/ASCII), now retry on empty happens only when retry_on_empty kwarg is passed to client during intialization

`client = Client(..., retry_on_empty=True)`

* Fix tcp servers (sync/async) not processing requests with transaction id > 255
* Introduce new api to check if the received response is an error or not (response.isError())
* Move timing logic to framers so that irrespective of client, correct timing logics are followed.
* Move framers from transaction.py to respective modules
* Fix modbus payload builder and decoder
* Async servers can now have an option to defer `reactor.run()` when using `Start<Tcp/Serial/Udo>Server(...,defer_reactor_run=True)`
* Fix UDP client issue while handling MEI messages (ReadDeviceInformationRequest)
* Add expected response lengths for WriteMultipleCoilRequest and WriteMultipleRegisterRequest
* Fix _rtu_byte_count_pos for GetCommEventLogResponse
* Add support for repeated MEI device information Object IDs
* Fix struct errors while decoding stray response
* Modbus read retries works only when empty/no message is received
* Change test runner from nosetest to pytest
* Fix Misc examples

v1.5.0.rc3

Toggle v1.5.0.rc3's commit message
pymodbus-dev#82 error response api (pymodbus-dev#262)

* easily to check for errors in stead of having to manually compare
response codes
0