We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
The sequence variable is defined here:
sequence
eeip.py/eeip/eipclient.py
Line 702 in b8961ea
And goes through a 0 + 0 operation :
0 + 0
Line 752 in b8961ea
And is not touched anywhere else. This messes with OpENer here: https://github.com/EIPStackGroup/OpENer/blob/5375e60e9d80a297db7ce47c4129e1a57c50b191/source/src/cip/cipioconnection.c#L922
Because it never thinks any new data is coming in.
Fix seems to be sequence += 1.
sequence += 1
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
The
sequence
variable is defined here:eeip.py/eeip/eipclient.py
Line 702 in b8961ea
And goes through a
0 + 0
operation :eeip.py/eeip/eipclient.py
Line 752 in b8961ea
And is not touched anywhere else. This messes with OpENer here:
https://github.com/EIPStackGroup/OpENer/blob/5375e60e9d80a297db7ce47c4129e1a57c50b191/source/src/cip/cipioconnection.c#L922
Because it never thinks any new data is coming in.
Fix seems to be
sequence += 1
.The text was updated successfully, but these errors were encountered: