I get this message whenever I try to use the IntRegister() function.
I have already gone through the solution provided in
e2e.ti.com/.../246376
I have added the following code in the .cfg file
/* ================ Application Specific Instances ================ */
var m3Hwi = xdc.useModule('ti.sysbios.family.arm.m3.Hwi');
var hwiParams = new m3Hwi.Params();
hwiParams.instance.name = "hwiCompA";
hwiParams.priority = 0x0A;
Program.global.hwiCompa = m3Hwi.create(47, "&CompCallback",hwiParams);
In order to generate interrupts for the Comparator A from a CC1310 LaunchPad.
Is there any other solution?
Thanks in advance.