08-11-2021 12:32 PM
Glad you are making progress. As for the 5 written, only 3 read. It could be a race condition. You see in your code the XNet Read and XNet Write are happening in parallel. To help make sure you only start writing after you start reading you can try synchronizing. Maybe do this by merging the errors coming out of the two property nodes, then use that output to go both to the Read and Write. You could also get a similar result by using a sequence structure, or a state machine.
Unofficial Forum Rules and Guidelines
Get going with G! - LabVIEW Wiki.
17 Part Blog on Automotive CAN bus. - Hooovahh - LabVIEW Overlord
08-11-2021 05:56 PM
Thank you!
I thought that was the case too. I have been playing around with the vi trying to get the sequence of the sessions right. I will post an update on this thread if something works out.