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?