This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

C6455 DAC/ADC

SA

-We are using 2 C6455 kits one as a transmitter & the other as a receiver

The transmitter one: we send constant digital samples for example=ones here's the part of the code:

    for (i = 0; i < BUFFSIZE_tx; i++)
    {
       outbuf[i] =1;
    }

the outbuf samples are converted via the DAC to analog signal & are transmitted to the receiver kit via an audio cable.

@The receiver kit: These analog signal is converted to digital again via the ADC

Now,we want to  see these digital samples & Compare with ones signal,how we can see these received digital signal?

Can we see these received samples by inserting break point & 'Add watch expression' or not?

 

Thanks alot