Part Number: LAUNCHXL-F28069M
Other Parts Discussed in Thread: C2000WARE
Hi
i'd like to understand linker script
but i can't find where this samples are defined
thanks for any advices
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.
Part Number: LAUNCHXL-F28069M
Other Parts Discussed in Thread: C2000WARE
Hi
i'd like to understand linker script
but i can't find where this samples are defined
thanks for any advices
Hi,
Here is the link on Linker Command file:
software-dl.ti.com/.../sdto_cgt_Linker-Command-File-Primer.html
The example you can find in C2000ware example at :
C://ti/c2000/C2000Ware_3_02_00_00/device_support/f2806x/examples/cla/asin
You must declare these functions in cla main file as extern. Please try example to get familiar.
// // These are defined by the linker file and used to copy // the CLA code from its load address to its run address // in CLA program memory // extern Uint16 Cla1funcsLoadStart; extern Uint16 Cla1funcsLoadEnd; extern Uint16 Cla1funcsLoadSize; extern Uint16 Cla1funcsRunStart; extern Uint16 Cla1Prog_Start;