11-01-2007 03:24 PM
11-01-2007 03:47 PM
It's a warning and not an error.
The VI that is showing the warning is a little weird. You configure the serial port to terminate the read with a termination character but then when you do a read, specify the byte count and if the bytes read does not equal what you specify, you try to do another read. You usually don't do both.
If you specify a termination character with the VISA Configure Serial Port, the VISA Read will terminate when the termination character is detected. If you specify 100 bytes to read and there are only 50 bytes and a termination character, all you will read is 50 bytes. If you disable the termination character detection, you will always get the warning. In this case, as long as you use the VISA Bytes at Serial Port to verify that there really isn't any more data in the buffer, you can simply ignore the warning.
11-01-2007 03:54 PM
11-01-2007 04:28 PM
11-01-2007 04:32 PM
11-01-2007 04:59 PM
11-02-2007 03:22 PM