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

portMAX_DELAY macro

Syntax

#define portMAX_DELAY ( TickType_t ) 0xffffffffUL

Examples

portMAX_DELAY is referenced by 10 libraries and example projects.

References

LocationText
portmacro.h:64
#define portMAX_DELAY ( TickType_t ) 0xffffffffUL
portmacro.h:64
#define portMAX_DELAY ( TickType_t ) 0xffffffffUL
cmsis_os.c:554
ticks = portMAX_DELAY;
cmsis_os.c:638
ticks = portMAX_DELAY;
cmsis_os.c:791
ticks = portMAX_DELAY;
cmsis_os.c:1117
ticks = portMAX_DELAY;
cmsis_os.c:1307
ticks = portMAX_DELAY;
cmsis_os.c:1569
ticks = portMAX_DELAY;
cmsis_os.c:1698
ticks = portMAX_DELAY;
heap_4.c:445
size_t xBlocks = 0, xMaxSize = 0, xMinSize = portMAX_DELAY; /* portMAX_DELAY used as a portable way of getting the maximum value. */
list.c:46
pxList->xListEnd.xItemValue = portMAX_DELAY;
list.c:122
if( xValueOfInsertion == portMAX_DELAY )
tasks.c:2059
xNextTaskUnblockTime = portMAX_DELAY;
tasks.c:2751
xNextTaskUnblockTime = portMAX_DELAY; /*lint !e961 MISRA exception as the casts are only redundant for some ports. */
tasks.c:3128
xTicksToWait = portMAX_DELAY;
tasks.c:3299
if( *pxTicksToWait == portMAX_DELAY )
tasks.c:3953
xNextTaskUnblockTime = portMAX_DELAY;
tasks.c:5206
if( ( xTicksToWait == portMAX_DELAY ) && ( xCanBlockIndefinitely != pdFALSE ) )