Hello all,
(target c6678, sysbios 6.37, XDC tools 3.25, CCSv6 .98, compiler 7.4.5)
In my CFG I have
xdc.useModule('ti.sysbios.family.c66.tci66x.CpIntc'); xdc.useModule('ti.sysbios.family.c64p.Hwi'); ... Hwi.create(11, "&CpIntc_dispatch", hwi_params);
In my C file
#include <ti/sysbios/family/c66/tci66xx/CpIntc.h> #include <ti/sysbios/family/c64p/Hwi.h>
But when I compile I get a link error saying that
the symbol CpIntc_dispatch is not found.
If I do the HWI creation at runtime (still with CpIntc_dispatch) it links.
I don't get it.
Thank you
Clement