My original signal was an analog signal. It was converted into digital signal and transmit out serially by a PIC microcontroller. The signal was transmitted using a wireless RF transceiver. At the receiver side, an identical RF transciever recieves the signal. Then I use the data acquistion instrument to collect in this signal.
For example an analog input of 3.4 volts was converted into AA and transmitted out starting with a start bit(which is a 0) and then 01010101(inverse of AA since LSB is transmitted first)then a stop bit(which is a 1).
So as of right now, the transmitted data is in binary format in groups of 10(1 start,8 data bits, 1 stop), one right after the other. What I want labview to do is to reverse the process I have done at the beginning and convert this serial data back to its original analog form.
With the stream of data coming in, Labview needs group these data bits in group of 10, starting with the very first bit received. If this group is 0010101011 like mentioned above, then it would convert back to roughly 3.4 volts.
I am not sure if the process I described about is possible with labview. I suspect that I might need additional D/A hardware to accomplish this task? I'm not sure.
Help is greatly appreciated, and please let me know if any more information is needed. Thanks,