I see many cmd file that include internal RAM in sections but not include external SDRAM.Is that same functions between internal ram and external sdram?
Can i use external sdrams like internal ram?
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 see many cmd file that include internal RAM in sections but not include external SDRAM.Is that same functions between internal ram and external sdram?
Can i use external sdrams like internal ram?
Hi,
I'm not sure if I entirely understand your question. The cmd file should match the amount of internal RAM that the DSP has and the amount of external RAM that your board have. You can put your code in either of them, but trying to keep your critical sections in internal RAM as the access to internal RAM is much faster.
Mariana's correct. The SDRAM will behave much like the internal RAM but much slower. This does not take things like cache into effect, but from a general standpoint the SDRAM is always slower than ISRAM.
Sometimes a linker command file found in an example may not define the SDRAM because the example code is small enough to fit inside the internal memory. Because the ISRAM is faster to use it makes more sense to ignore the SDRAM.