LabVIEW

cancel
Showing results for 
Search instead for 
Did you mean: 

How can i come out of this error-1073676294

Hi
 
I am using LV8.0 FDS
 
I am trying to perform the serial port communication. When i am reading the data from the serial port,i am using the Bytes at  port property node to get the byte count and wire it to the VISA Read. And now i am not expecting any error.
 
But i always find the error with this code Error 1073676294(The number of bytes transferred is equal to the requested input count. More data might be available.The number of bytes transferred is equal to the requested input count. More data might be available.)
 
This happens even when the total data what i am expecting is read.
 
How to come out of this error.
 
Plz suggest
 
Thanks & Regards
   Kiran
0 Kudos
Message 1 of 3
(3,300 Views)
Is the "status" boolean of the error cluster actually set (i.e., =true)? I suspect it's probably false. This means that it's telling you it's a warning, not an error. This follows NI's convention that when status=false and error code <> 0 it means it's a warning. Note that I say this is NI's convention. It is not widely followed.
Message 2 of 3
(3,287 Views)
smercurio_fcs is correct. It's only a warning and you will get this every time the VISA read does not detect a termination character. You can use the Clear Errors fucntion to get rid of it if it bothers you to see the code in your error cluster. I usually don't bother.
Message 3 of 3
(3,282 Views)