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.
Tool/software: TI-RTOS
Hi, TI!
Could you help me with my issue.
When i copied all fails SYSbios in RAM (D01SARAM) , code in cmd SECTION i have trouble with My main function it isnt launch. 0x3FE2EE (no symbols are defined)
I have memcopy function in begin of main but TMS didnt go to start of the main. May be i nedd to paste memcopy function to other place?
Whan i deleted section of copy SysBios , TMS starts ok.
SECTION
{
.knl: { *.*(.text:*ti_sysbios_knl*) } LOAD = FLASH,
RUN = D01SARAM, /* must be CSM secured RAM */
LOAD_START(_knlramFuncs_loadstart),
LOAD_END(_knlramFuncs_loadend),
RUN_START(_knlramFuncs_runstart)
PAGE = 0, ALIGN(8)
.hwi: { *.*(.text:*ti_sysbios*_Hwi_*) } LOAD = FLASH,
RUN = D01SARAM, /* must be CSM secured RAM */
LOAD_START(_HwiramFuncs_loadstart),
LOAD_END(_HwiramFuncs_loadend),
RUN_START(_HwiramFuncs_runstart),
PAGE = 0, ALIGN(8)
.sysbios: { *.*(.text:*ti_sysbios*) } LOAD = FLASH,
RUN = D01SARAM, /* must be CSM secured RAM */
LOAD_START(_sysbiosramFuncs_loadstart),
LOAD_END(_sysbiosramFuncs_loadend),
RUN_START(_sysbiosramFuncs_runstart),
PAGE = 0, ALIGN(8)
}