Download FreeRTOS
 

Quality RTOS & Embedded Software

KERNEL
WHAT'S NEW
FreeRTOS Roadmap and Code Contribution process.
OPC-UA over TSN with FreeRTOS.
FreeRTOS-Plus-TCP now has unified IPv4 and IPv6 functionalities and multi-interface support.
Achieving Unbrickable MCU FOTA for your FreeRTOS-powered Firmware:
FreeRTOS 202012 LTS end of support announced.

uxTaskBasePriorityGet
[Task Control]

task. h
UBaseType_t uxTaskBasePriorityGet( const TaskHandle_t xTask );

INCLUDE_uxTaskPriorityGet and configUSE_MUTEXES must be defined as 1 for this function to be available. See the RTOS Configuration documentation for more information.

Obtain the base priority of any task. The base priority of a task is the priority to which the task will return if the task's current priority has been inherited to avoid unbounded priority inversion when obtaining a mutex.

Parameters:
xTask Handle of the task to be queried. Passing a NULL handle results in the base priority of the calling task being returned.
Returns:
The base priority of xTask.



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