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.

MSP432E401Y: Set ROV labels

Part Number: MSP432E401Y

How can I show labels for threads, mailboxes, and semaphores in ROV?

None of the methods described in the various threads works for me:

  1. params.instance->name = "mytask";
  2. const char task[7] = "mytask" (on module level)
    params.instance->name = "mytask";
  3. char *task;
    task = malloc(7);
    sprintf (task, "mytask");
    params.instance->name = "mytask";

Thank you and regards
Peter