Part Number: TM4C1290NCPDT
Tool/software: Code Composer Studio
Hi:
Here is fragment of the code I developed.
sprintf ( task_name , "%s%d","tcpwrk", connection_count );
taskParams.instance->name = task_name;
connection_count++;
taskHandle = Task_create((Task_FuncPtr)tcpWorker, &taskParams, &eb);
I have multiple instates of tcpWorker task but it looks lie they all have the same ask name in ROV .
How make each task have its own unique name in ROV ?