0
0
FreeRTOSprogramming~10 mins

xTaskCreate() function in FreeRTOS - Step-by-Step Execution

Choose your learning style9 modes available
Concept Flow - xTaskCreate() function
Call xTaskCreate()
Check parameters valid?
NoReturn error
Yes
Allocate stack memory
Create Task Control Block
Add task to Ready list
Return success
Scheduler runs task when ready
The xTaskCreate() function checks inputs, allocates resources, creates a task control block, adds the task to the ready list, and returns success or failure.
Execution Sample
FreeRTOS
xTaskCreate(
  vTaskCode, "Task1", 1000, NULL, 1, &xHandle);
Creates a task named "Task1" with stack size 1000 words, priority 1, no parameters, and stores the handle in xHandle.
Execution Table
StepActionParameter CheckResultOutput
1Call xTaskCreate with parametersN/AN/AFunction starts
2Check if vTaskCode is not NULLvTaskCode validPassContinue
3Check if stack size > 0Stack size = 1000PassContinue
4Allocate stack memoryMemory availablePassStack allocated
5Create Task Control Block (TCB)TCB createdPassTCB ready
6Add task to Ready listTask addedPassTask ready to run
7Return pdPASSSuccessPassxTaskCreate returns pdPASS
8Scheduler runs task when readyTask in ready listPassTask executes when scheduled
💡 Execution stops after task is created and added to ready list; function returns pdPASS.
Variable Tracker
VariableStartAfter Step 4After Step 5After Step 6Final
xHandleNULLNULLPoints to TCBPoints to TCBPoints to TCB
Stack MemoryNot allocatedAllocated (1000 units)AllocatedAllocatedAllocated
Task StateNot createdNot createdCreatedReadyReady
Key Moments - 3 Insights
Why must the stack size be greater than zero?
Because the stack is where the task stores its data during execution. Step 3 in the execution_table shows the check for stack size > 0; if zero, task creation fails.
What happens if vTaskCode is NULL?
Step 2 in the execution_table checks vTaskCode. If NULL, xTaskCreate returns an error immediately and does not create the task.
When does the task actually start running?
After step 6, the task is added to the ready list. The scheduler then runs the task when it is its turn, as shown in step 8.
Visual Quiz - 3 Questions
Test your understanding
Look at the execution_table, at which step is the task added to the ready list?
AStep 4
BStep 2
CStep 6
DStep 8
💡 Hint
Check the 'Action' column for 'Add task to Ready list' in the execution_table.
According to variable_tracker, what is the value of xHandle after step 5?
APoints to TCB
BNULL
CPoints to stack memory
DUndefined
💡 Hint
Look at the 'xHandle' row and the 'After Step 5' column in variable_tracker.
If the stack size was zero, what would happen according to the execution_table?
ATask would be created anyway
BFunction would return error at step 3
CTask would run immediately
DStack memory would be allocated with zero size
💡 Hint
Step 3 checks stack size; if zero, creation fails as shown in execution_table.
Concept Snapshot
xTaskCreate() creates a FreeRTOS task.
Syntax: xTaskCreate(TaskFunction, "Name", StackSize, Params, Priority, &Handle)
Checks parameters, allocates stack, creates TCB, adds task to ready list.
Returns pdPASS on success, error otherwise.
Task runs when scheduler schedules it.
Full Transcript
The xTaskCreate() function is called with parameters including the task function, name, stack size, parameters, priority, and a handle pointer. It first checks if the task function pointer is valid and if the stack size is greater than zero. If these checks pass, it allocates stack memory and creates a Task Control Block (TCB). The task is then added to the ready list, making it ready to run. The function returns pdPASS to indicate success. The scheduler will run the task when it is its turn. Variables like the task handle and stack memory change state during these steps, as shown in the variable tracker. Common confusions include why stack size must be positive, what happens if the task function is NULL, and when the task actually starts running. The visual quiz tests understanding of these steps and variable states.