Hi,
I have a Task and a Clock (periodic function) created using the Task_create and Clock_create functions.
I was hoping to run some one-time initializations as part of the task and some periodic actions using clock. But I notice that the Clock function is getting executed before the Task function.
I have used _create functions as below
Task_create(Init_Fxn, &tskParams1, &eb1);
Clock_create(Clk_Fxn, 5, &clkParams, NULL);
Question 1:
Could you help me with the files that needs to be modified to change the scheduling of Tasks and Clocks?
Question 2:
Is there another way to make tasks periodic (other than creating a Clock function)?
Regards,
Rashmitha

