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.

TMS320F28379D: Running Code from Flash Memory

Part Number: TMS320F28379D

Hello TI Experts  

Till now i run the program in live debugger mode. Now I'm planning to run my software from flash

1. I replaced 2837xD_RAM_lnk_cpu1 with 2837xD_FLASH_lnk_cpu1 and then

2. I inserted below statement at the starting of my void main 

#ifdef _FLASH
memcpy(&RamfuncsRunStart, &RamfuncsLoadStart, (size_t)&RamfuncsLoadSize) ;
#endif

Does this above statement necessary for running the software from Flash ?  

These two changes i made till now. do i make any further modification in my software ?