Hello,
I am a newbie with DSPs and TI's TMS320C6748. Can some please point out where to access the raw audio bytes in the sample starterware audio application? I'd like to perform some operations on them. While debugging, I tried modifying the sample code to transmit chosen byte values which I hoped I'd be able to recover at another similar board, but the byte values were completely different in the received buffers (rxBufx). I also noticed the txBufPtr[lastSentTxBuf] was different from the rxBufPtr[lastFullRxBuf] after the following memcpy line was executed. Is there a reason why this is the case?
memcpy((void *)txBufPtr[lastSentTxBuf], (void *)rxBufPtr[lastFullRxBuf], AUDIO_BUF_SIZE);
Thanks for your anticipated help!