Hello Team,
I want to use scheduler to schedule two tasks i.e task_1 and task_2. The task_1 and task_2 are as follow:
void task_1() {
printf("Task 1 ran");
}
void task_2() {
printf("Task 2 ran");
}
Now I want to use the scheduler to schedule this task i.e to schedule task_1 after every 100ms and task_2 after every 200ms.
I am totally new to this topic and have tried to read the scheduler library from Nordic info-center but i am still not clear about how to implement this.
I have also referred the HID example but was not able to implement the above describe task.
If possible if you can provide a example it will be very helpful.
Thanks and Regards,
Juzer.T