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.

Question about importing 10sec wav signal data into CE0 (updated)

Hello:

 

    I want to use memcpy function to load the voice signal (wav file) into my external SDRAM of C6713 dsk.

    The McBSP reading in is inside the ISR.

 

     Is my this code correct?


interrupt void serialPortRcvISR()
{
Uint32 temp;

short *point;
point = (short *) 0x80000000;

                       short sample[1]={0};

temp = MCBSP_read(DSK6713_AIC23_DATAHANDLE);

sample[0]=temp;
memcpy(point,sample,2);

}


I want to import the frame of data from mp3 to the CE0.
Since I was baffled by the type inconsistency, here I defined a pointer type variable which is okey for the memcpy input.
But how could I view whether I have successfully imported the frame or not?

I need the memory browser?
I checked the browser and nothing was in there!

I checked temp in expression but nothing was in there!

Another issue is that my data is float point, what data type should I use?


Could you please give me some suggestions about how to check whether the samples have been imported into CE0 or not?

Thanks a lot

Yu