LabVIEW

cancel
Showing results for 
Search instead for 
Did you mean: 

Plotting ADPCM signals?

I am trying to read an ADPCM signal and make my own player for this so I can analyze the data.  I tried using the serial visa's with no success.  I am guessing I need some different software for this purpose. 

Do I need the modulation toolkit for this or is there some other way to read this I am missing.

 

The output signal looks like serial data ranging from +5v to -5v.

 

Any suggestions, thanks.

0 Kudos
Message 1 of 8
(3,379 Views)

Hi BernieSAIC,

 

How are you trying to read this signal? via serial? or through a DAQ card?

0 Kudos
Message 2 of 8
(3,359 Views)
I am reading this through the Rx of the serial com port.  So in essence I just want to monitor this pin and decode the data to a graph.  Right now I can see the waveform using some freeware ADPCM player and it reads it correctly, I just cannot automate it using that software so I need to find a solution with LabVIEW.
0 Kudos
Message 3 of 8
(3,355 Views)

To see the waveform, do you know what command the freeware sends to retrieve the waveform?

 

Alternatively, when the freeware obtains the waveform, is there a way to export that data from the freeware? If so, you could use the System Exec VI or Open Application Reference VI to programmatically launch the freeware and export the data from it.

0 Kudos
Message 4 of 8
(3,334 Views)

I tried to find the file it uses to collect data but was unsuccessful.

 

I have no clue what commands the freeware uses.

 

I will look further into finding the data file but am also open to other suggestions.  Thanks for the help so far.

0 Kudos
Message 5 of 8
(3,326 Views)

BernieSAIC wrote:
I am reading this through the Rx of the serial com port.  So in essence I just want to monitor this pin and decode the data to a graph. 

 

Is this signal continuously coming through this pin? or is it sent only when you ask for it?

 

0 Kudos
Message 6 of 8
(3,305 Views)

When I turn the modulation on on the Signal generator the waveform will start.  Withou tthe modulation on it just reads no signal (noise).

 

BK

0 Kudos
Message 7 of 8
(3,294 Views)

Hi BK,

 

Most times, when you want data from a serial device, you need to query it and then it sends the data. However, it sounds like yours is continuously streaming data (whether it's an actual signal or just noise). NI VISA Read should be able to interpret this data but needs to know certain characteristics about the way the data is sent such as the stop bit and parity bit or else it won't know how to interpret the data it reads. This is the kind of information you should be able to get from the signal generator manual.

0 Kudos
Message 8 of 8
(3,270 Views)