Greetings,
I am trying to use the named instance label feature to show names in the ROV display. This works for task, mailbox, event, semaphore, and SWI.
It does not for HWI. The label text does not show in ROV. Is this supposed to work?
A code extract from one of my HWI initializations:
Hwi_Params hwiParams;
Error_Block eb;
Hwi_Params_init(&hwiParams);
Error_init(&eb);
hwiParams.arg = 1;
hwiParams.priority = 19;
hwiParams.instance->name = "ADC Hwi";
tempHwiHandler = Hwi_create(intNum ,hwiFuncPointer , &hwiParams, &eb);
My cfg file:
var Swi = xdc.useModule('ti.sysbios.knl.Swi');
var Mailbox = xdc.useModule('ti.sysbios.knl.Mailbox');
var Event = xdc.useModule('ti.sysbios.knl.Event');
var Timer = xdc.useModule('ti.sysbios.timers.dmtimer.Timer');
var Semaphore = xdc.useModule('ti.sysbios.knl.Semaphore');
var Hwi = xdc.useModule('ti.sysbios.hal.Hwi');
var Task = xdc.useModule('ti.sysbios.knl.Task');
var BIOS = xdc.useModule('ti.sysbios.BIOS');
Swi.numPriorities = 4;
BIOS.common$.namedInstance = true;
Task.common$.namedInstance = true;
Semaphore.common$.namedInstance = true;
Event.common$.namedInstance = true;
Mailbox.common$.namedInstance = true;
Hwi.common$.namedInstance = true;
Swi.common$.namedInstance = true;
Program.heap = 32768;
Platform: AM3359 on BeagleBone
SYS/BIOS 6.34.2.18
CCS 5.3.0.00090
ROV 3.3.0.201209281235
RTSC/XDC 3.24.5.48
Gerry Belanger