04-09-2012 02:08 AM
I want to write a driver,i use the simple visa to write.but i have error,Error-1073807339 occurred at VISA read in visa the reason is "timeout expired before operation completed
what is this meaning ?
04-09-2012 04:38 AM
Heyy
May be, you are trying to read more number byte count then as the actual byte count data provided by instrument.
So By reducing byte count at read function, you may resolve your problem.
Regards,
Devang.
04-09-2012 07:53 AM
04-10-2012 03:25 AM
Try this out to solve your problem...
Use the following steps to debug this or other serial timeout errors:
Note: Verify that you have terminated the command string correctly. A new line or carriage return is often required at the end of a command. A good way to test this in LabVIEW is to right-click the command string control on the front panel and change the display to '\' Codes Display mode. In this mode, a carriage return is\r
, a line feed is\n
, and an end of line is\r\n
. Verify that the command being sent to the serial device has the termination character that the device requires.
04-10-2012 04:00 AM