FreeRTOS + 0/16 examples
CodeScope will show references to tskIDLE_PRIORITY from the following samples and libraries:
Examples
STM32469I-Discovery
Demonstrations
Applications
FreeRTOS
STM32469I_EVAL
Demonstrations
Applications
FreeRTOS
LwIP
STM324x9I_EVAL
Demonstrations
Applications
FreeRTOS
LwIP
STM32F429I-Discovery
Demonstrations
Applications
FreeRTOS
STM32446E_EVAL
Applications
FreeRTOS
STM324xG_EVAL
Applications
FreeRTOS
LwIP
STM32F412G-Discovery
Applications
FreeRTOS
STM32F413H-Discovery
Applications
FreeRTOS
STM32F413ZH-Nucleo
Applications
FreeRTOS
 
Symbols
loading...
Files
loading...

tskIDLE_PRIORITY macro

Defines the priority used by the idle task. This must not be modified.

Syntax

#define tskIDLE_PRIORITY ( ( UBaseType_t ) 0U )

Examples

tskIDLE_PRIORITY is referenced by 16 libraries and example projects.

References

LocationText
task.h:163
#define tskIDLE_PRIORITY ( ( UBaseType_t ) 0U )
cmsis_os.c:105
unsigned portBASE_TYPE fpriority = tskIDLE_PRIORITY;
cmsis_os.c:120
if ((fpriority - tskIDLE_PRIORITY) <= (osPriorityRealtime - osPriorityIdle)) {
cmsis_os.c:121
priority = (osPriority)((int)osPriorityIdle + (int)(fpriority - tskIDLE_PRIORITY));
queue.c:2065
uxHighestPriorityOfWaitingTasks = tskIDLE_PRIORITY;
tasks.c:372
PRIVILEGED_DATA static volatile UBaseType_t uxTopReadyPriority = tskIDLE_PRIORITY;
tasks.c:2165
if( pxCurrentTCB->uxPriority > tskIDLE_PRIORITY )
tasks.c:2169
else if( listCURRENT_LIST_LENGTH( &( pxReadyTasksLists[ tskIDLE_PRIORITY ] ) ) > 1 )
tasks.c:2462
} while( uxQueue > ( UBaseType_t ) tskIDLE_PRIORITY ); /*lint !e961 MISRA exception as the casts are only redundant for some ports. */
tasks.c:2521
} while( uxQueue > ( UBaseType_t ) tskIDLE_PRIORITY ); /*lint !e961 MISRA exception as the casts are only redundant for some ports. */
tasks.c:3432
if( listCURRENT_LIST_LENGTH( &( pxReadyTasksLists[ tskIDLE_PRIORITY ] ) ) > ( UBaseType_t ) 1 )