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.

a Labels of objects are not shown in the ROV window.

Other Parts Discussed in Thread: SYSBIOS

Hi, all.

I'm creating the tasks like this:

    Task_Params_init(&taskParams);
taskParams.priority = task_priority;
taskParams.arg0 = (UArg) (param_1);
taskParams.arg1 = (UArg) (param_2);
taskParams.stackSize = required_stack;
taskParams.instance->name = "example_name";

Task_create ( fnx_to_exec, &taskParams, NULL);

The task is created, running, etc. The problem is all tasks are without their names ("label") in the ROW window:

How to add the names? Is there a specific option in the CFG file?