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.

Problem loading test app to TMDXEVM6670L

Hello,

We're having problems trying to load test code to EVM6670L that successfully compiled in CCS 5.0.2. The attached document describes the steps we followed.

8623.load_problem_TMDXEVM6670L.doc

Any help is greatly appreciated.

Regards,

James

  • Hi,

    I had encountered the same problem before, I think may be you need a .cmd file to  tell the CCS or DSP where the program should be loaded into, then it should not make the error again.  The following  text is a simple .cmd file,  may be you can take  as a reference.  just add it to your project.

    MEMORY
    { ram: o = 00800000h l = 00050000h }
    SECTIONS
    {
    .text  > ram
    .stack >ram
    .bss   > ram
    .cinit  > ram
    .far> ram
    .switch> ram
    .const> ram
    .cio > ram
    .sysmem > ram
    }

    Regards,

    Tao

  • yes you need to add a cmd file. if you use the BIOS project you don't need one.

     

    Thanks,

    Arun.