Personal Data

Username:
kbus
Joined:
2021-05-02 17:03:31

Projects

  • No projects to display.

User Activity

  • Posted a comment on discussion Forge πŸ‡¬πŸ‡§ on CODESYS Forge

    To be more specific, trying to reset xError on ModbusFB.ClientRequestReadHoldingRegisters once it gets set.

  • Posted a comment on discussion Forge πŸ‡¬πŸ‡§ on CODESYS Forge

    To be more specific, trying to reset xError on ModbusFB.ClientRequestReadHoldingRegisters once it gets set.

  • Posted a comment on discussion Forge πŸ‡¬πŸ‡§ on CODESYS Forge

    Have another issue. I cannot reset xError once it is set. Does anyone know how to reset xError after it is set?

  • Posted a comment on discussion Forge πŸ‡¬πŸ‡§ on CODESYS Forge

    Say I want to connect to a modbus tcp device, then want to disconnect after reading. What do I call to make it disconnect? I've tried setting xConnect := FALSE; but that doesn't work. I've implicityly set ~~~ _Connect := false; ~~~, and that doesn't work either. In all cases the .Connected is true.

  • Posted a comment on discussion Forge πŸ‡¬πŸ‡§ on CODESYS Forge

    In trying to build a simple sample to post, I also found that once xError is set, that also doesn't reset with xExecute := FALSE. This is specific and only tested with ModbusFB.ClientRequestReadHoldingRegisters; I haven't tested with any of the other ClientRequest* objects.

  • Posted a comment on discussion Forge πŸ‡¬πŸ‡§ on CODESYS Forge

    That is a great question. Yes and No. The sample is written to talk to itself. Meaning it spins up a master and a slave then they talk to each other in the same soft PLC. When trying to talk to something other than itself the sample is broken and does not work. I'm working on simplified code now to post and should have something shortly.

  • Posted a comment on discussion Forge πŸ‡¬πŸ‡§ on CODESYS Forge

    After some digging I found that ClientRequest inherits from ETrigTo. ETrigTo states in its documentation that all outputs will be reset on the falling edge of xExecute. This does not happen. I cannot tell from the documenation if ClientRequest overrides xExecute behavior or not, but this is where the issue is I believe.

  • Posted a comment on discussion Forge πŸ‡¬πŸ‡§ on CODESYS Forge

    Hello everyone, I'm experimenting with the ModbusFB library examples and I've found a strange issue that I think is just my lack of understanding. I'm able to connect to a slave with my code, but after a successful poll, the xDone is set to TRUE which is correct. BUT, once that happens, ModbusFB will not attempt to talk to the slave again. I have to disconnect and reconnect to get it to talk again. I cannot reset xDone to FALSE. After I get back xDone = TRUE I set xExecute to FALSE and thought that...

View All