Hello,
I am trying to setup my project's architecture and I am trying to take advantage of some of the awesome libraries in the SDK. I am a bit confused on the differences between the Task Manager and the Scheduler and what each is best suited for.
From reading the SDK 16/17 docs, it seems like the Scheduler is basically an event queue that takes execution out of low level context and into main context. Seems pretty useful for freeing up the BLE stack or other modules while servicing interrupts, but what is a situation in which this would benefit me over the normal event handling structure? Maybe if multiple interrupts are coming in at the same time those low level modules reject the second if currently servicing the first?
Next there is the Task Manger which is basically a cooperative scheduler. This seems like it is useful if you have multiple contexts that you want to run code from simultaneously. It also has the ability to wait for events or yield to the next task, which seems useful. This seems like I would need to have more than just event servicing routines in my project to make task switching useful. what situation would this be useful in?
Both of these libraries are fancy ways to execute callbacks so what is the difference if I use Task Manager and task_events_set() in ISRs and service in specific task vs using the Scheduler and calling app_sched_event_put() from the ISR?
Finally I am trying to structure my application such that it is as event driven as possible. That means that most of my code will be executed in response to HW or BLE interrupt/events. If this is truly the case then it seems like I would just need the scheduler to offload my peripherals, but I noticed that the template example comes standard with the Task Manager and implements and idle task. My specific questions:
- Can you use the Task Manager and Scheduler in tandem? Is there a use case or benefit?
- What benefits does the Task Manager provide to architecture? Do I need to have more than just events and an idle task for the task manager to be worth keeping as the default architecture?
- How is the idle task better than just having your main loop call everything in the idle task?
- What is the ideal use case for the Task manager?
Thanks in advance!