prvTaskPriorityRestore() function
INCLUDE_vTaskPrioritySet must be defined as 1 for this function to be available. See the configuration section for more information. Restore a task's priority that was previously raised by prvTaskPriorityRaise(). For configUSE_MUTEXES == 0: A context switch will occur before the function returns if the priority being set is higher than the priority of the currently executing task.
Arguments
pxSavedPriority
previously saved base and current priorities that need to be restored
Notes
This functions is private and should only be called internally within various IDF components. Users should never call this function from their application.