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 C/C++ Compiler
Hi,
I have few queries on copy sections listed below.
**************************
Thanks and Regards,
Harish B.
Note that the TI compiler tools, the linker in particular, do have features which support allocating a section at one address for loading, and a different address for execution. Related features make it easy to perform the copy from the load address to the run address. That copy, however, never occurs automatically. The copy occurs only when the user invokes it. As an example, it is possible to never perform the copy of a function from the load address to the run address, then call that function, and end up executing garbage. Nothing in the tools prevents that from occurring.
harish boyina said:Can we do copy sections from FLASH to RAM after entering into the main( ) function?
Yes
harish boyina said:can I do copy sections 2nd time on the same RAM with different section?
Yes
Thanks and regards,
-George