FreeRTOS Tetris
|
Group that contains macros & functions for the creation of FreeRTOS Tasks. More...
Modules | |
Task Handles & Enumerations | |
Group that contains definitions for task handles. | |
Functions | |
BaseType_t | xTaskCreate (TaskFunction_t pxTaskCode, const char *const pcName, const uint16_t usStackDepth, void *const pvParameters, UBaseType_t uxPriority, TaskHandle_t *const pxCreatedTask) PRIVILEGED_FUNCTION |
Create a new task and add it to the list of tasks that are ready to run. More... | |
TaskHandle_t | xTaskCreateStatic (TaskFunction_t pxTaskCode, const char *const pcName, const uint32_t ulStackDepth, void *const pvParameters, UBaseType_t uxPriority, StackType_t *const puxStackBuffer, StaticTask_t *const pxTaskBuffer) PRIVILEGED_FUNCTION |
Create a new task and add it to the list of tasks that are ready to run. More... | |
void | vTaskDelete (TaskHandle_t xTaskToDelete) PRIVILEGED_FUNCTION |
Remove a task from the RTOS real time kernel's management. The task being deleted will be removed from all ready, blocked, suspended and event lists. More... | |
Group that contains macros & functions for the creation of FreeRTOS Tasks.
void vTaskDelete | ( | TaskHandle_t | xTaskToDelete | ) |
#include <task.h>
Remove a task from the RTOS real time kernel's management. The task being deleted will be removed from all ready, blocked, suspended and event lists.
See the demo application file death.c for sample code that utilises vTaskDelete ().
xTask | The handle of the task to be deleted. Passing NULL will cause the calling task to be deleted. |
Example usage:
BaseType_t xTaskCreate | ( | TaskFunction_t | pxTaskCode, |
const char *const | pcName, | ||
const uint16_t | usStackDepth, | ||
void *const | pvParameters, | ||
UBaseType_t | uxPriority, | ||
TaskHandle_t *const | pxCreatedTask | ||
) |
#include <task.h>
Create a new task and add it to the list of tasks that are ready to run.
Internally, within the FreeRTOS implementation, tasks use two blocks of memory. The first block is used to hold the task's data structures. The second block is used by the task as its stack. If a task is created using xTaskCreate() then both blocks of memory are automatically dynamically allocated inside the xTaskCreate() function. (see http://www.freertos.org/a00111.html).
If a task is created using xTaskCreateStatic() then the application writer must provide the required memory. xTaskCreateStatic() therefore allows a task to be created without using any dynamic memory allocation.
See xTaskCreateStatic() for a version that does not use any dynamic memory allocation.
xTaskCreate() can only be used to create a task that has unrestricted access to the entire microcontroller memory map. Systems that include MPU support can alternatively create an MPU constrained task using xTaskCreateRestricted().
pvTaskCode | Pointer to the task entry function. Tasks must be implemented to never return (i.e. continuous loop). |
pcName | A descriptive name for the task. This is mainly used to facilitate debugging. Max length defined by configMAX_TASK_NAME_LEN - default is 16. |
usStackDepth | The size of the task stack specified as the number of variables the stack can hold - not the number of bytes. For example, if the stack is 16 bits wide and usStackDepth is defined as 100, 200 bytes will be allocated for stack storage. |
pvParameters | Pointer that will be used as the parameter for the task being created. |
uxPriority | The priority at which the task should run. Systems that include MPU support can optionally create tasks in a privileged (system) mode by setting bit portPRIVILEGE_BIT of the priority parameter. For example, to create a privileged task at priority 2 the uxPriority parameter should be set to ( 2 | portPRIVILEGE_BIT ). |
pvCreatedTask | Used to pass back a handle by which the created task can be referenced. |
Example usage:
TaskHandle_t xTaskCreateStatic | ( | TaskFunction_t | pxTaskCode, |
const char *const | pcName, | ||
const uint32_t | ulStackDepth, | ||
void *const | pvParameters, | ||
UBaseType_t | uxPriority, | ||
StackType_t *const | puxStackBuffer, | ||
StaticTask_t *const | pxTaskBuffer | ||
) |
#include <task.h>
Create a new task and add it to the list of tasks that are ready to run.
Internally, within the FreeRTOS implementation, tasks use two blocks of memory. The first block is used to hold the task's data structures. The second block is used by the task as its stack. If a task is created using xTaskCreate() then both blocks of memory are automatically dynamically allocated inside the xTaskCreate() function. (see http://www.freertos.org/a00111.html). If a task is created using xTaskCreateStatic() then the application writer must provide the required memory. xTaskCreateStatic() therefore allows a task to be created without using any dynamic memory allocation.
pvTaskCode | Pointer to the task entry function. Tasks must be implemented to never return (i.e. continuous loop). |
pcName | A descriptive name for the task. This is mainly used to facilitate debugging. The maximum length of the string is defined by configMAX_TASK_NAME_LEN in FreeRTOSConfig.h. |
ulStackDepth | The size of the task stack specified as the number of variables the stack can hold - not the number of bytes. For example, if the stack is 32-bits wide and ulStackDepth is defined as 100 then 400 bytes will be allocated for stack storage. |
pvParameters | Pointer that will be used as the parameter for the task being created. |
uxPriority | The priority at which the task will run. |
pxStackBuffer | Must point to a StackType_t array that has at least ulStackDepth indexes - the array will then be used as the task's stack, removing the need for the stack to be allocated dynamically. |
pxTaskBuffer | Must point to a variable of type StaticTask_t, which will then be used to hold the task's data structures, removing the need for the memory to be allocated dynamically. |
Example usage: