Download FreeRTOS
 

Quality RTOS & Embedded Software

KERNEL
WHAT'S NEW
Simplifying Authenticated Cloud Connectivity for Any Device.
Designing an energy efficient and cloud-connected IoT solution with CoAP.
Introducing FreeRTOS Kernel version 11.0.0:
FreeRTOS Roadmap and Code Contribution process.
OPC-UA over TSN with FreeRTOS.

xTaskGetApplicationTaskTag
xTaskGetApplicationTaskTagFromISR
[Task Control]

task. h
TaskHookFunction_t xTaskGetApplicationTaskTag( TaskHandle_t xTask ); TaskHookFunction_t xTaskGetApplicationTaskTagFromISR( TaskHandle_t xTask );

configUSE_APPLICATION_TASK_TAG must be defined as 1 for these functions to be available. See the RTOS Configuration documentation for more information.

xTaskGetApplicationTaskTagFromISR() is a version of xTaskGetApplicationTaskTag() that can be called from an interrupt service routine (ISR).

Returns the 'tag' value associated with a task. The meaning and use of the tag value is defined by the application writer. The RTOS kernel itself will not normally access the tag value.

This function is intended for advanced users only.

Parameters:
xTask The handle of the task being queried. A task can query its own tag value by using NULL as the parameter value.
Returns:
The 'tag' value of the task being queried.
Example usage:
/* In this example, an integer is set as the task tag value. */ void vATask( void *pvParameters ) { /* Assign a tag value of 1 to the currently executing task. The (void *) cast is used to prevent compiler warnings. */ vTaskSetApplicationTaskTag( NULL, ( void * ) 1 ); for( ;; ) { /* Rest of task code goes here. */ } } void vAFunction( void ) { TaskHandle_t xHandle; int iReturnedTaskHandle; /* Create a task from the vATask() function, storing the handle to the created task in the xTask variable. */ /* Create the task. */ if( xTaskCreate( vATask, /* Pointer to the function that implements the task. */ "Demo task", /* Text name given to the task. */ STACK_SIZE, /* The size of the stack that should be created for the task. This is defined in words, not bytes. */ NULL, /* The task does not use the parameter. */ TASK_PRIORITY, /* The priority to assign to the newly created task. */ &xHandle /* The handle to the task being created will be placed in xHandle. */ ) == pdPASS ) { /* The task was created successfully. Delay for a short period to allow the task to run. */ vTaskDelay( 100 ); /* What tag value is assigned to the task? The returned tag value is stored in an integer, so cast to an integer to prevent compiler warnings. */ iReturnedTaskHandle = ( int ) xTaskGetApplicationTaskTag( xHandle ); } }





Copyright (C) Amazon Web Services, Inc. or its affiliates. All rights reserved.