Hello,
I am using the audio example of the PSP version 1.30 with the OMAP L137 EVM board. The code was modified like described in post http://e2e.ti.com/support/embedded/f/355/p/42576/165541.aspx#165541to use the 32-bit mode of the codec in a non-interleaved stream. The data of the stream seems to be fine as well as the sound that is looped back. The mysterious thing happen when I modify the data of the xmt array for example by silencing the first element by:
/* copy the receive information to the transmit buffer */
memcpy(xmt,rcv,BUFSIZE * RX_NUM_SERIALIZER);
/* set first element */
*((Int32 *)xmt)=0;
This example results in a strong noise on both audio channels. All attempts to modify the output stream results in a noisy output. For me it seems that there is some hidden connection between input and output stream.
Is there some workaround for this problem?
Thank you!