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.

TMS320C6713B: Issue of Flash memory on TMS320c6713 Eval kit

Part Number: TMS320C6713B

Hi

I am working on TMS320c6713 Eval kit and i want to burn my project ( hex file ) in flash memory.

I have a  flash memory in kit , size is 512kb and default size is 256kb for use(As per datasheet).

I want to increase my flash memory size to 512kb. How i do it.

Please help me.

my link.cmd  and flash.cmd files details have been give below.

Flash burn .cmd file for hex conversion:-

BlinkDSK6713.out            /* Input File: COFF file format (.out) */
-a                          /* Output Format: ASCII Hex format (.hex) */
-image                      /* Select image mode */
-memwidth 8                 /* Set memory width */
-o BlinkDSK6713.hex         /* Output File: ASCII Hex file (.hex) */

ROMS
{
    FLASH: org = 000h, len = 0x040000, romwidth = 8
}

and

project ink.cmd file for .out file :-

MEMORY
{
    vecs:          o = 00000000h   l = 00000200h
    boot:          o = 00000200h   l = 00000200h
    IRAM:          o = 00000400h   l = 0000FA00h
    CE0:           o = 80000000h   l = 01000000h
}

SECTIONS
{
    "vectors"   >       vecs
    "bootload"  >       boot
    .cinit      >       IRAM
    .text       >       IRAM
    .stack      >       IRAM
    .bss        >       IRAM
    .const      >       IRAM
    .data       >       IRAM
    .far        >       IRAM
    .switch     >       IRAM
    .sysmem     >       IRAM
    .tables     >       IRAM
    .cio        >       IRAM
}

Regards

Gopal