Other Parts Discussed in Thread: SYSBIOS
Hi Guys,
By means of Conversion tools, my DSPBIOS tcf file is converted to a SYSBIOS cfg file. And there is a statement inside it:
bios.HWI.instance("HWI_INT6").fxn = "ECM_dispatch";
which register a function called ECM_dispatch to INT6.
I could find the function is implemented in <ecm.h> of bios_6_x_x_x\packages\ti\bios\include.
But in the linking stage, the linker reports the symbol _ECM_dispatch is not defined.
The similar issue occurs to another variable which is defined in converted CFG file:
bios.MEM.instance("EMIFB").heapLabel = "heapEMIFA";
which assign a label name heapEMIFA to the heap located in EMIFB. The name will be used in my application C code.
But similar to ECM_dispatch, the linker reports it's undefined.
What am i missed?
Thanks.
Allen