hi
I have read in certain pdf's regarding TMS320C6713 DSk saying that
"An audio sample is read from the codec using the function DSK6713_AIC23_read. Note that the
code waits inside the while loop until the codec is ready to read. The left and right channels are
both inside the unsigned 32 bit variable STEREO." (Uint32 Stereo).
// inside main After initialization
for(;;)
{
// Read left and right channel samples
while (!DSK6713_AIC23_read(hCodec, &stereo));
// write left and right channel samples
while (!DSK6713_AIC23_write(hCodec, stereo));
}
//
while debugging the value in Variable "Stereo" is between ( 0x00000000 and 0x0000FFFF). it never goes beyond why ...??? (though the author is mentioning its a stereo data)
thanks
Nageshwar