07-07-2008 01:09 PM
Almost forgot,
Yes, the first thing I did was communicate using hyperterminal.
I have also been able to communicate using the generic seriel VI in labview, but it will give read errors if I try writing and reading several times in a row.
07-07-2008 01:46 PM
The purpose of the VISA property node is to set the com parameters, to automatically append a LF with each write, and to terminate each read when the LF is detected. So, there is no constant string of LF's being sent, it is only sent once whenever you do a VISA Write.
I would recomend you not run anything in continuous mode. It is a debug technique that you have to use very carefully. You might be running into a timing limitation of the instrument. If you need to continuously write or read something, make sure you have some sort of delay in the loop (i.e. Wait (msec). The instrument manual should tell you what kind of update rate it supports. You might also need a small delay between a VISA Write and a VISA Read though with the termination character enabled, this is often not necessary.
07-08-2008 03:49 PM
07-09-2008 06:03 PM
Hi Swild,
Can you please post a screenshot of your code?
Thank you,