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.

How to download test code into NOR Flash in davinci EVM DM6646

HI,

I am trying to download a simple Hello word code to flash (Say nor flash) in CCS v 5, currently it is downloading into DDR2 of my EVM.

I am using Spectrum Digital davinci Evaluation module with JTAG Emulator.

I want to store the code even the power is off.

below is my linker command file:

-stack 0x00000800 /* Stack Size */
-heap 0x00000800 /* Heap Size */

MEMORY
{
IRAM: o = 0x00000000 l = 0x00004000
DRAM: o = 0x00008000 l = 0x00004000
AEMIF: o = 0x02000000 l = 0x02000000
DDR2: o = 0x80000000 l = 0x10000000
}

SECTIONS
{
.bss > DDR2
.cinit > DDR2
.cio > DDR2
.const > DDR2
.stack > DDR2
.sysmem > DDR2
.text > DDR2
.ddr2 > DDR2
}