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.

Copying FPUfastRTS sections to RAM

Other Parts Discussed in Thread: TMS320F28335, CONTROLSUITE

I am using TMS320F28335 and I need to copy some functions from the FPUfastRTS library to RAM. So far, part of my cmd file contains:

.text : > FLASHA PAGE = 0,
        {C:\ti\controlSUITE\libs\math\FPUfastRTS\V100\lib\rts2800_fpu32_fast_supplement.lib (.text)}
        RUN = RAML0123, PAGE = 0
        LOAD_START(_fastRTS_loadstart),
        LOAD_END(_fastRTS_loadend),
        RUN_START(_fastRTS_runstart)

And I do the memcopy by:

MemCopy(&fastRTS_loadstart, &fastRTS_loadend, &fastRTS_runstart);

After compilation I get a warning:

warning #10068-D: no matching section

When I start the debug, the processor is lost.