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 am trying to load the code into the C28f335 flash then copy it to the RAM and run the code.
I am using "spraau8" and it does not work. I am using an example that has in the sysctrl.c file: #pragma CODE_SECTION(InitFlash, "ramfuncs");
void InitFlash(void)
{
EALLOW;
//Enable Flash Pipeline mode to improve performance
//of code executed from Flash.
FlashRegs.FOPT.bit.ENPIPE = 1;
// CAUTION
//Minimum waitstates required for the flash operating
//at a given CPU rate must be characterized by TI.
//Refer to the datasheet for the latest information.
#if CPU_FRQ_150MHZ
//Set the Paged Waitstate for the Flash
FlashRegs.FBANKWAIT.bit.PAGEWAIT = 5;
//Set the Random Waitstate for the Flash
FlashRegs.FBANKWAIT.bit.RANDWAIT = 5;
//Set the Waitstate for the OTP
FlashRegs.FOTPWAIT.bit.OTPWAIT = 8;
#endif
#if CPU_FRQ_100MHZ
//Set the Paged Waitstate for the Flash
FlashRegs.FBANKWAIT.bit.PAGEWAIT = 3;
//Set the Random Waitstate for the Flash
FlashRegs.FBANKWAIT.bit.RANDWAIT = 3;
//Set the Waitstate for the OTP
FlashRegs.FOTPWAIT.bit.OTPWAIT = 5;
#endif
// CAUTION
//ONLY THE DEFAULT VALUE FOR THESE 2 REGISTERS SHOULD BE USED
FlashRegs.FSTDBYWAIT.bit.STDBYWAIT = 0x01FF;
FlashRegs.FACTIVEWAIT.bit.ACTIVEWAIT = 0x01FF;
EDIS;
//Force a pipeline flush to ensure that the write to
//the last register configured occurs before returning.
asm(" RPT #7 || NOP");
}
but I am getting the warning in the compile
"warning: creating output section "ramfuncs" without a SECTIONS specification"
I think that is the reason for it not to work but I am not sure how to correct it.
Thanks
Foaud,
The warning message is saying that you haven't told the linker where to link the section 'ramfuncs'. I assume you want to load ramfuncs to flash, but execute it from ram. Therefore, you need to do a little bit of work in the linker .cmd file. Something like this:
ramfuncs : LOAD = MYFLASH, PAGE = 0
RUN = MYRAM, PAGE = 0
LOAD_START(_RamFuncs_loadstart),
LOAD_SIZE(_RamFuncs_loadsize),
RUN_START(_RamFuncs_runstart)
The last three lines above generate symbols that can be used at runtime in your code to perform the copy from flash to ram. This is discussed in the appnote you cited, SPRAAU8, section 3.1.3.
Another good reference is appnote SPRA958:
Regards,
David