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 Champs,
My customer has several intellectual property source code files, and they want to generate executable binary files to download into flash for protection, just like Instaspin-FOC. And symbol library will be added into their main project. Would you kindly share how to do this? I remember there is an Appnote or blogs to describe the procedure, but I cannot find it.
Thanks.
Regards,
Young.
Hi Yanming,
Many thanks.
Instead of symbols library, another project including empty main() function and also their algorithm functions was created. If they want to call algorithm, they use absolute address function pointer to call this function as follows.
#define PrjB_Add (float (*)(float, float))0x003f03f7
c = (*PrjB_Add)(a,b);
Thanks.
Regards,
Young