06-28-2012 09:36 AM
Hi All,
I'm new to labview2010 working on harmonic analysis of power signals. Data is obtained from a serial port @ 115200 baud
from a 2 channel 8bit ADC. I need to separate the data plot the wave form of both current and voltage individually.
Worked out few modules taking help from internet but could not succeed. I want to see the continuous wave form from the
real time parameters.
Any suggestions and guidance is appreciated
06-28-2012 10:17 AM
06-28-2012 10:39 AM
Besides pushing the file write to a consumer loop, it makes no sense to configure the serial port, open it, and close it with each iteration. The Configure and close should be outside the loop. The VISA Open is not required at all. If you are getting 2 bytes of hex data, you also want to disable the termination character with the Configure Serial Port. The string subset functions are also not required. Just take the string and use the String to Byte Array function.The use the Index Array function.
06-28-2012 11:00 PM
Hi Dennis, thanks for the help, do you suggest any online tutorital for learning.. that might be helpful
06-29-2012 08:37 AM