0
0
FreeRTOSprogramming~10 mins

Priority-based scheduling in FreeRTOS - Step-by-Step Execution

Choose your learning style9 modes available
Concept Flow - Priority-based scheduling
Ready Tasks Queue
Check Highest Priority Task
Run Highest Priority Task
Task Completes or Blocks
Update Ready Queue
Back to Check Highest Priority Task
The scheduler always picks the ready task with the highest priority to run next. When a task finishes or blocks, the scheduler updates the queue and picks the next highest priority task.
Execution Sample
FreeRTOS
void vTask1(void *pvParameters) {
  for(;;) {
    // Task 1 code
    vTaskDelay(100 / portTICK_PERIOD_MS);
  }
}

void vTask2(void *pvParameters) {
  for(;;) {
    // Task 2 code
    vTaskDelay(50 / portTICK_PERIOD_MS);
  }
}
Two tasks run with different priorities; the scheduler runs the higher priority task first whenever it is ready.
Execution Table
StepReady TasksHighest Priority TaskActionOutput/State
1Task1(Priority 2), Task2(Priority 1)Task1Run Task1Task1 runs
2Task1 (delayed), Task2 (ready)Task2Run Task2Task2 runs
3Task1 (ready), Task2 (delayed)Task1Run Task1Task1 runs
4Task1 (delayed), Task2 (ready)Task2Run Task2Task2 runs
5Task1 (ready), Task2 (delayed)Task1Run Task1Task1 runs
6Task1 (delayed), Task2 (ready)Task2Run Task2Task2 runs
7Task1 (ready), Task2 (delayed)Task1Run Task1Task1 runs
8Task1 (delayed), Task2 (ready)Task2Run Task2Task2 runs
9Task1 (ready), Task2 (delayed)Task1Run Task1Task1 runs
10Task1 (delayed), Task2 (ready)Task2Run Task2Task2 runs
11No ready tasksNoneIdleCPU idle, waiting for tasks
ExitNo ready tasksNoneStopNo tasks ready to run
💡 No tasks are ready; scheduler idles or waits for interrupts.
Variable Tracker
VariableStartAfter 1After 2After 3After 4After 5After 6After 7After 8After 9After 10Final
Task1 StateReadyRunningDelayedReadyDelayedReadyDelayedReadyDelayedReadyDelayedIdle
Task2 StateReadyReadyRunningDelayedReadyDelayedReadyDelayedReadyDelayedReadyIdle
Key Moments - 3 Insights
Why does Task2 run immediately after Task1 delays, even though Task1 has higher priority?
Because Task1 is delayed (blocked), it is not ready to run. The scheduler picks the highest priority task that is ready, which is Task2 at that moment (see execution_table rows 2 and 4).
What happens if both tasks are ready at the same time?
The scheduler always runs the task with the higher priority first. Here, Task1 has priority 2 and Task2 has priority 1, so Task1 runs first whenever both are ready (see execution_table rows 1, 3, 5).
Why does the CPU become idle at the end?
When no tasks are ready to run (all delayed or blocked), the scheduler idles the CPU waiting for an event or interrupt (see execution_table row 11).
Visual Quiz - 3 Questions
Test your understanding
Look at the execution table, which task runs at Step 3?
ATask2
BTask1
CNo task runs
DBoth tasks run simultaneously
💡 Hint
Check the 'Highest Priority Task' column at Step 3 in the execution_table.
At which step does the CPU become idle according to the execution table?
AStep 11
BStep 9
CStep 10
DStep 1
💡 Hint
Look for the row where 'Highest Priority Task' is 'None' and action is 'Idle'.
If Task1 priority was lower than Task2, which task would run first when both are ready?
AThey run alternately
BTask1
CTask2
DCPU idles
💡 Hint
Priority-based scheduling always runs the highest priority ready task first (see key_moments about priority).
Concept Snapshot
Priority-based scheduling in FreeRTOS:
- Scheduler picks the ready task with highest priority.
- If higher priority task is blocked, lower priority runs.
- Tasks run until they block, delay, or yield.
- CPU idles if no tasks are ready.
- Priorities are numeric; higher number means higher priority.
Full Transcript
Priority-based scheduling in FreeRTOS means the scheduler always runs the ready task with the highest priority number. If that task blocks or delays, the scheduler picks the next highest priority ready task. Tasks run in a loop, and when no tasks are ready, the CPU idles. This example shows two tasks with different priorities running alternately as they delay. The execution table traces which task runs at each step, and the variable tracker shows task states changing from ready to running to delayed. Key moments clarify why lower priority tasks run only when higher priority ones are blocked. The visual quiz tests understanding of task selection and CPU idling based on priority and readiness.