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.

SYS/BIOS periodic tasks

Hello All,

I have a task that I created using Task_Create

Task_Params taskParams;

Task_Params_init(&taskParams);

taskParams.stackSize = 0x4000;

Task_create((Task_FuncPtr)Task, &taskParams, NULL);

I like to run this task every 125us. How can I achieve that ? Should I be using Clock_Create(but I like to have to task thread blockable)?

Thanks

~Anish