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 can I extend F28020 RAM run space

Other Parts Discussed in Thread: CONTROLSUITE

hi:

I use f28020 to run BLDC program ,  program migrate from controlsuite  BLDC-Sensor .    original program use f28035 mcu. 

we know f28020 is 3k ram place .  in cmd, it separate three space ,  RAMM0 ,RAMM1, RAML0.      1K+1K+1K=3K;

but now :

warning #16002-D: build attribute vendor section TI missing in "../IQmath.lib<IQmathTables.obj>": compatibility cannot be determined
"../F2802x_generic_flash.cmd", line 112: error #10099-D: program will not fit into available memory. run placement with alignment/blocking fails for section "ramfuncs" size 0x44b page 0. Available memory ranges:
RAMM0 size: 0x400 unused: 0x400 max hole: 0x400
error #10010: errors encountered during linking; "F28020BLDC_AC.out" not built

in cmd:

MEMORY
{
PAGE 0: /* Program Memory */
/* Memory (RAM/FLASH/OTP) blocks can be moved to PAGE1 for data allocation */

RAMM0 : origin = 0x000050, length = 0x000400 /* on-chip RAM block M0 0x0003B0*/
OTP : origin = 0x3D7800, length = 0x000400 /* on-chip OTP */
FLASHA : origin = 0x3F7000, length = 0x000F80 /* on-chip FLASH */
CSM_RSVD : origin = 0x3F7F80, length = 0x000076 /* Part of FLASHA. Program with all 0x0000 when CSM is in use. */
BEGIN : origin = 0x3F7FF6, length = 0x000002 /* Part of FLASHA. Used for "boot to Flash" bootloader mode. */
CSM_PWL_P0 : origin = 0x3F7FF8, length = 0x000008 /* Part of FLASHA. CSM password locations in FLASHA */
FLASHB : origin = 0x3F6000, length = 0x001000 /* on-chip FLASH */

IQTABLES : origin = 0x3FE000, length = 0x000B50 /* IQ Math Tables in Boot ROM */
IQTABLES2 : origin = 0x3FEB50, length = 0x00008C /* IQ Math Tables in Boot ROM */
IQTABLES3 : origin = 0x3FEBDC, length = 0x0000AA /* IQ Math Tables in Boot ROM */

ROM : origin = 0x3FF27C, length = 0x000D44 /* Boot ROM */
RESET : origin = 0x3FFFC0, length = 0x000002 /* part of boot ROM */
VECTORS : origin = 0x3FFFC2, length = 0x00003E /* part of boot ROM */

PAGE 1 : /* Data Memory */
/* Memory (RAM/FLASH/OTP) blocks can be moved to PAGE0 for program allocation */
/* Registers remain on PAGE1 */

BOOT_RSVD : origin = 0x000000, length = 0x000050 /* Part of M0, BOOT rom will use this for stack */
RAMM1 : origin = 0x000400, length = 0x000400 /* on-chip RAM block M1 */
RAML0 : origin = 0x008000, length = 0x000400 /* on-chip RAM block L0 */

}

/* Allocate sections to memory blocks.
Note:
codestart user defined section in DSP28_CodeStartBranch.asm used to redirect code
execution when booting to flash
ramfuncs user defined section to store functions that will be copied from Flash into RAM
*/

SECTIONS
{

/* Allocate program areas: */
codestart : > BEGIN PAGE = 0

ramfuncs : LOAD = FLASHA,
RUN = RAMM0,
LOAD_START(_RamfuncsLoadStart),
LOAD_END(_RamfuncsLoadEnd),
RUN_START(_RamfuncsRunStart),
PAGE = 0


.cinit : > FLASHA | FLASHB, PAGE = 0
.pinit : > FLASHA | FLASHB, PAGE = 0
.text : >> FLASHA | FLASHB, PAGE = 0

csmpasswds : > CSM_PWL_P0, PAGE = 0
       csm_rsvd : > CSM_RSVD, PAGE = 0

/* Allocate uninitalized data sections: */
         .stack : > RAMM1, PAGE = 1
         .ebss : >> RAMM1 | RAML0, PAGE = 1
.esysmem : >> RAMM1 | RAML0, PAGE = 1
UserRegs : >> FLASHA | FLASHB, PAGE = 0
/* Initalized sections go in Flash */
/* For SDFlash to program these, they must be allocated to page 0 */
.econst : >> FLASHA | FLASHB, PAGE = 0
.switch : >> FLASHA | FLASHB, PAGE = 0

/* Allocate IQ math areas: */
 IQmath : >> FLASHA | FLASHB, PAGE = 0 /* Math Code */
IQmathTables : > IQTABLES, PAGE = 0, TYPE = NOLOAD

.reset : > RESET, PAGE = 0, TYPE = DSECT
vectors : > VECTORS PAGE = 0, TYPE = DSECT

my program need 0x44b ,   but RAMM0  is 0x400.    what can i do now .?  

best regard !