-
Notifications
You must be signed in to change notification settings - Fork 897
Fix modbus serial #1675
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
Draft
palandri
wants to merge
6
commits into
thingsboard:master
Choose a base branch
from
palandri:fix-modbus-serial
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.
Draft
Fix modbus serial #1675
Changes from all commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
1aeb306
Change pymodbus version to 3.0.2; ModbusSerialServer needs start() be…
palandri 9545349
Merge branch 'thingsboard:master' into fix-pymodbus-version
palandri a62b178
Changed __poll_device to __process_device, to better reflect function
palandri 3283c0b
Modbus server logic using ModbusSparseDataBlock
palandri ccec0e8
Removed unused method
palandri 71c5181
Fix server init when no value is defined in config
palandri File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It looks like it always be 'no_master': True. Because you at first unpack config and then overwrite no_master it with True.
Also are you sure that we actually need no_master parameter in general? Because if connector can reads data from data blocks - master will be no longer required
Uh oh!
There was an error while loading. Please reload this page.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes, I think you are right in this regard. I tried to modify as little as possible of the Slave class, to not break stuff, so I created the 'no_master' parameter to keep the current implementantion of the Slave class working in polling mode. But it isnt a parameter of the Server class, but Slave class, initialized here. When
get_slave_config_format
is called, it creates a Slave object (inside Server context), withno_master = True
. If the Slave object is called outside of Server context,no_master
do not exists, so it defaults to False.With the gateway working as a Client, it makes sense to poll Servers (which is triggered by the Slave-class object).
On the other hand, with the gateway working as a Server, polling doesn't make sense anymore (as the Server need to react to when data is sent to it).
So, 'no_master' simply control if Slave' internal timer is to be activated or not.
I think a better implementation of it would be to change Slave class to initialize the timer based on
poll_period
parameter (for example, ifpoll_period = 0
, do not poll).