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.
Dear expert,
The application I am developing is only using 2 of the available CLA task vectors. I wonder if during initialization, it is a good practice to initialize the remaining unused task vectors and assign them to a, for instance, default function like:
__attribute__ ((interrupt)) void cla_task_unused(void)
{
}
Is this a good practice, or providing any benefit?
Thanks,
Marc
Its not a bad practice and only takes up a little bit of memory. As long as the tasks are not enabled they should never be called, however.