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