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.

Linker Error #10247-D creating output section ".vtable_ram" without a SECTIONS specification

Other Parts Discussed in Thread: SYSBIOS, CC1310

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.