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.
I use TMS320F28335 XINTF wit 16 bit data bus. It's connected to RAM IS61LV6416L. I use TI example code: Example_2833xDMA_xintf_to_ram
Almost everything works fine, but I can't understand why do I have that long time delay between access to next RAM cells. I have pluged my probe to chip select pin of zone 7. When I execute code from example, exactly this part :
for (i=0; i<BUF_SIZE; i++)
{
DMABuf1[i] = 0;
DMABuf2[i] = i; //it is in external RAM
}
Why there is about 110ns delay between accessing again to ext. RAM. I need almost no delay(can be 10ns) between one write/read and another.
Writing time is 40ns - which is ok.
Hi Piotr,
From the code supplied, I'd recommend that you look at the assembly listing and also consider potential pipeline conflicts
Cheers, Mitja