You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
FreeRTOS considers the Arduino super loop to be the default task.
When using the super loop paradigm, it doesn't make any difference because it will be the only task running by definition.
However, it means that when an operating system is used to design, the default task runs only when the microcontroller is idle. It is the only task not guaranteed to run per tasking iteration.
The only behavior that should be given to this task is when nothing more is running, like sleeping mode. Even then, it is unusual for the default task to have anything other than an empty loop.
The text was updated successfully, but these errors were encountered:
FreeRTOS considers the Arduino super loop to be the default task.
When using the super loop paradigm, it doesn't make any difference because it will be the only task running by definition.
However, it means that when an operating system is used to design, the default task runs only when the microcontroller is idle. It is the only task not guaranteed to run per tasking iteration.
The only behavior that should be given to this task is when nothing more is running, like sleeping mode. Even then, it is unusual for the default task to have anything other than an empty loop.
The text was updated successfully, but these errors were encountered: