I noticed this morning that instance names no longer appear in ROV for any entity type.
It has been several weeks since I had to look at ROV, so I do not know exactly what update made them disappear.
I am using them with tasks, events, mailboxes swis and semaphores, all of which worked before. A typical task setup is:
// create the task
Error_init(&eb);
Task_Params_init(&taskParams); // set defaults
taskParams.priority = priority;
taskParams.instance->name = "Initialization Task";
gl_os_init = Task_create(task_init, &taskParams, &eb);
Target: AM335x (BeagleBone)
SYS/BIOS: bios_6_34_04_22
XDC tools: xdctools_3_24_05_48
CCS: 5.3.0.00090, up to date according to the Help -> Check for Updates
Compiler: 5.0.4
My bios config file is attached.
Gerry Belanger