-
I encountered three issues during the development process and need your help to provide some ideas. Question 1: Question 2: Question 3: Finally, thank you for your valuable time. |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 2 replies
-
Hi @rooterWzs , Welcome to the PLC4X community. :-) To answer your question 3: Did you subscribe to the mailing list as well? You can search previous content in our Mail Archive In order to post to the list you first need to subscribe. This can be done by sending an empty Email to [email protected]. Greetings, |
Beta Was this translation helpful? Give feedback.
-
For problem 1 multiple things need to happen for your driver to show up.
Regarding question 2 I usually make a capture of a working solution using the protocol and then use @sruehl s tool to convert that into a parser-serializer test xml and firstly make sure that passes. Then I take the snippets of this parser serializer test and build a driver test xml (IT - Integration test) and start implementing the driver logic. In parallel I create a manual test, that runs the driver at some real hardware that I've setup with dedicated test data (so I can compare my test results with expected values). Just have a look at some of the existing stuff for other protocols. Hope that helps |
Beta Was this translation helpful? Give feedback.
For problem 1 multiple things need to happen for your driver to show up.
Regarding question 2 I usually make a capture of a working solution using the protocol and then use @sruehl s tool to convert that into a parser-serializer test xml and firstly make sure that passes.
Then I take the snippets of this parser serializer test and build a driver test xml (IT - Integration test) and start implementing the driver logic. In parallel I create a manual test, th…