LabVIEW

cancel
Showing results for 
Search instead for 
Did you mean: 

VISA write

Hello,

 

with single VISA config,how many times v can use VISA write in a VI..?? Is there any limitation..?? will the baud rate reduce if i go on adding VISA write serially..??

 

Thank you

0 Kudos
Message 1 of 5
(2,374 Views)

Hi,

 

> how many times v can use VISA write in a VI..??

 

There is no practical limit (other than eventually you'll run out of memory)

 

> will the baud rate reduce if i go on adding VISA write serially..??

 

No

 

However, your question raises some flags.

 

Programs are usually easier to design, debug, and maintain if instrument communication is done in one central location rather than scattered around in the code.

 

Suggestion: Put your instrument communication in a consumer loop or Action Engine.

 

steve

--------------------------------------------------------------------------------------------------------------------------
Help the forum when you get help. Click the "Solution?" icon on the reply that answers your
question. Give "Kudos" to replies that help.
--------------------------------------------------------------------------------------------------------------------------
0 Kudos
Message 2 of 5
(2,364 Views)

To reiterate what Steve has already stated.  You setup the port once and the settings will not change until you change them or close the port.  I have had the most success with serial ports using an Action Engine for writing and a second loop for just reading from the serial port.  The second loop for reading is only because I mostly dealt with equipment that will "randomly" send me data and I needed to parse it into very specific replies and status.


GCentral
There are only two ways to tell somebody thanks: Kudos and Marked Solutions
Unofficial Forum Rules and Guidelines
"Not that we are sufficient in ourselves to claim anything as coming from us, but our sufficiency is from God" - 2 Corinthians 3:5
0 Kudos
Message 3 of 5
(2,351 Views)

@crossrulz wrote:

To reiterate what Steve has already stated.  You setup the port once and the settings will not change until you change them or close the port.  I have had the most success with serial ports using an Action Engine for writing and a second loop for just reading from the serial port.  The second loop for reading is only because I mostly dealt with equipment that will "randomly" send me data and I needed to parse it into very specific replies and status.



I will have to try this method, I haven't really done this before because most of my apps are command response so it's not necessary. But I do have one that streams (although I can't remember in that one if we ever write). On a side note, my general philosophy is "where there is a reference, there is an action engine". Has worked well so far. Every now and then I won't hold to it, but in general I feel it makes it easier to debug. 

0 Kudos
Message 4 of 5
(2,338 Views)

for(imstuck) wrote:
On a side note, my general philosophy is "where there is a reference, there is an action engine".

I tend to follow that philosophy myself.  File I/O, VISA references, Queues, Notifiers, heck even Events.  I'll have to remember that saying though.  If you want to see an example of how I implemented some of my serial interfaces, PM me.  We should take it offline as it might not be proper for me to post it here and there might be some explaining for my specific requirements.

GCentral
There are only two ways to tell somebody thanks: Kudos and Marked Solutions
Unofficial Forum Rules and Guidelines
"Not that we are sufficient in ourselves to claim anything as coming from us, but our sufficiency is from God" - 2 Corinthians 3:5
0 Kudos
Message 5 of 5
(2,330 Views)