LabVIEW

cancel
Showing results for 
Search instead for 
Did you mean: 

NI VISA and Parallel connections with Serial Devices

I am trying to figure out what is causing our code to not be able to run truly in parallel when using several different Serial Port adapters, and trying to communicate with multiple devices at the same time.  I have tried a MOXA Ethernet to 4 port RS323, a MOXA USB to 4 port RS232 and a StarTech USB to 8 port RS232, and they all show the same behavior.

 

In the "real code", I have cloneable DQMH modules that communicate with a test nest, containing the device under test and serial ports to communicate to each device individually.

 

I made a simple VI, that will communicate with a device on each serial port, just to try to get it down to its "simplest" form.

Kenny_K_4-1743080126228.png

 

 

Kenny_K_0-1743079210059.png

 

When looking at the execution times of the commands, I would expect them to be similar in times (under 2 seconds for each serial port), but I am seeing that is appears that only 2 of the serial ports can communicate at the same time.

 

Notice how two of the devices are under 2 sec, and the other 2 take considerably longer.

 

Kenny_K_1-1743079496062.png

 

 

All of the VIs are set to Shared Clone.   Some of the VIs internally are Pre-allocated subroutines, but otherwise are Shared Clones.

 

- I have tried running the Read/Writes as both Asynchronous and Synchronous, I didnt notice any difference.

- I have run the VI Analyzer to check for re-entrant issues, and found none.

- I tried adding in the In Place element structure where there was an unblundle/bundle (per VI analyzer recommendation)

Kenny_K_2-1743079724894.png

 

- I have the high resolution relative seconds sprinkled around to gather some timing stats.  It is a Pre-allocated subroutine, but I wrap it in a Flat sequence structure to control data flow.

Kenny_K_3-1743079855626.png

- Replaced the VISA Configure Serial Port with the actual code on the block diagram, since that VI is not re-entrant

Kenny_K_5-1743080491507.png

 

 

I am currently using LabVIEW 2024 Q3, Patch 2 (64 bit), but I have seen the same behavior with other versions of LabVIEW as well.

NI VISA is also 2024 Q3.

 

Sorry, I cannot post the code due to company IP.

 

 

 

Kenny

0 Kudos
Message 1 of 5
(128 Views)

Did you try setting your VIs to preallocated clone? That always seems a better option to me. RAM is cheap!

0 Kudos
Message 2 of 5
(115 Views)

Unfortunately I cant, due to using Dynamic Dispatch in the class.

 

Kenny_K_0-1743085295596.png

 

Kenny

0 Kudos
Message 3 of 5
(100 Views)

I have tried similar things in the past with VISA Serial and multiple serial ports. I believe even with multiple device on multiple ports (even different ports like Serial, GPIB, VX11) VISA does not access them in parallel regardless of how your program looks, VISA accesses them one at a time in random order like a race condition. 

========================
=== Engineer Ambiguously ===
========================
0 Kudos
Message 4 of 5
(94 Views)

Ok, an update.  When using the simple VI, if I move each serial port into its own FOR loop, I can achieve the expected parallel performance

 

Kenny_K_0-1743088354863.png

Times are much faster, and way more consistent.

Kenny_K_1-1743088377593.png

 

 

I also did create a quick and dirty Cloneable DQMH module, and the times are still matching the parallel FOR loop in the code above.

Kenny_K_2-1743089833825.png

 

So that means that the issue is in my actual test code (which is a lot more complicated than the simple module shown here.

 

I guess ill keep trying figure out what is causing the loops to not do the communication in parallel.

Kenny

0 Kudos
Message 5 of 5
(84 Views)