11-24-2008 03:32 PM
Hello, I am programming an application on Labview to receive data from a serial device. One problem is that the device always outputs CR+LF after each measurement. However, in Labview, it seems only one termination character is allowed. This causes problems for me, because when I choose LF as the termination character, and I'm scanning the read string, it contains the other termination character, which gets sent to my data file and waveform chart, and it also fails to plot the data on the waveform chart, since the scanned string isn't pure numbers.
Is there a way around this? Thanks for any help.
Solved! Go to Solution.
11-24-2008 03:46 PM
Set LF as your termination character. Search the string function for the CR and return the data before the CR.
11-24-2008 04:08 PM