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.

SD CARD on C5509

Hi all

I have a board evm5509 (Spectrum Digital) and I am using a SD CARD. With base in the application SPRA808A succeed

to write and to read in the first block according to the example, but when trying to write sequentially DSP it locks in the function MMC_write (mmc0, Addr, data, 512).

What can be happening wrong? When it locks the variable Addr is 118.


 while( Page < nBlocks )  {

                  Addr = (Uint32)(Page) * 512;

                  MMC_write( mmc0, Addr, data, 512 );

                  Page++;

}


Best Regards