-
Notifications
You must be signed in to change notification settings - Fork 88
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
Generic, Assembly Instance write format #279
Comments
I was able to get it "working" with one oddity. I had to change the connected= to True. `
` |
I have seen some devices that certain services only work with connected messages, but I'm not sure if this is a case of that. Unfortunately, without more details I'm not sure I can tell you exactly what was going on. Those extra bytes may be related to it being unconnected and a Micro800, but I haven't seen a bug with that before. What is your CIP path? with unconnected messages, you have to get the |
In this case the device is an HMS Anybus Communicator. It's working well for my purposes now. It just didn't make sense to me why pycomm3 would be sending 38 instead of 36. Not sure if I should close this out or leave open as a possible bug? |
it's possible this is a bug, leaving the issue open is fine with me. I haven't had much time to look into it, so leaving it open will help remind me to come back to it |
I was seeing a similar behavior with messages configured for "connected=False" until I also added the option "route_path=None". That allowed me to keep my messages configured as unconnected while writing the correct length! I don't know if that is the expected behavior or not but from what I was seeing in the source code, it seemed like the route_path was being appended to the end of the packet, so I'm guessing somewhere it is getting set to 0x00 instead of None. |
I have an EIP device that I am having trouble writing back to via generic message.
Reading is working fine with assembly instance 100
On each attempt to write with the correct number of bytes I am seeing "Too Much Data" service error.
I know that my device expects exactly 36 bytes at assembly instance 150
Interesting enough I only see the error "too much data" if I send exactly 36 bytes or more.
If I send 35 or less I get "insufficient command data"
below is what the generic message code looks like.
`
driver = CIPDriver(path)
driver.open()
`
Any ideas what I could be doing wrong?
Or if something else is going on?
Added an image of the MSG config from a MicroLogix 1400 for reference.
The text was updated successfully, but these errors were encountered: