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.

CCS/TMS320F28335: TMS320F28335

Part Number: TMS320F28335

Tool/software: Code Composer Studio

hello all 

I have faced a memory issue problem. I need some adivice to fix  the follows error:

''  program will not fit into available memory.  placement with alignment/blocking fails for section ".TI.ramfunc" size 0x1e41 page 0.  Available memory ranges:''

MEMORY
{
PAGE 0 :
/* BEGIN is used for the "boot to SARAM" bootloader mode */

BEGIN : origin = 0x000000, length = 0x000002 /* Boot to M0 will go here */
RAMM0 : origin = 0x000050, length = 0x0003B0 //0x0003B0
RAML0 : origin = 0x008000, length = 0x001000
RAML1 : origin = 0x009000, length = 0x001000
RAML2 : origin = 0x00A000, length = 0x001000
RAML3 : origin = 0x00B000, length = 0x001000
ZONE7A : origin = 0x200000, length = 0x00FC00

....

}

SECTIONS
{
/* Setup for "boot to SARAM" mode:
The codestart section (found in DSP28_CodeStartBranch.asm)
re-directs execution to the start of user code. */
codestart : > BEGIN, PAGE = 0

#ifdef __TI_COMPILER_VERSION__
#if __TI_COMPILER_VERSION__ >= 15009000
.TI.ramfunc : {} > RAML0 , PAGE = 0
#else
ramfuncs : > RAML0, PAGE = 0
#endif
#endif

...

}

i have change 

RAML0 : origin = 0x007000, length = 0x002000

it start debug but the 

it says 

'' one or more memory is not in the apprropraite loaction... "

thanks