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.

Code Composer 5.1 TMS320 non volatile ram

Trying to configure linker file for non volatile ram, ram when power is applied, non-volatile when not (retains).

Used this in the SECTIONS to keep from zero filling at run time

NVSRAM  >  NVSRAM_MEMORY, type = NOINIT

However when loading from an emulator, the (ram) is zero filled.

tried    NVSRAM > NVSRAM_MEMORY, type = NOLOAD

to keep from zero fill on load, but then run time it zeroed it.

How can I do both, basicaly make it keep anything from writing to it execpt the actual code.

Thanks,