Select your cookie preferences

We use essential cookies and similar tools that are necessary to provide our site and services. We use performance cookies to collect anonymous statistics, so we can understand how customers use our site and make improvements. Essential cookies cannot be deactivated, but you can choose “Customize” or “Decline” to decline performance cookies.

If you agree, AWS and approved third parties will also use cookies to provide useful site features, remember your preferences, and display relevant content, including relevant advertising. To accept or decline all non-essential cookies, choose “Accept” or “Decline.” To make more detailed choices, choose “Customize.”

Updated Mar 2025

vTaskSetTimeOutState()

[Task Utilities]

task.h

1void vTaskSetTimeOutState( TimeOut_t * const pxTimeOut );

This function is intended for advanced users only.

A task can enter the Blocked state to wait for an event. Typically, the task will not wait in the Blocked state indefinitely, but instead a timeout period will be specified. The task will be removed from the Blocked state if the timeout period expires before the event the task is waiting for occurs.

If a task enters and exits the Blocked state more than once while it is waiting for the event to occur then the timeout used each time the task enters the Blocked state must be adjusted to ensure the total of all the time spent in the Blocked state does not exceed the originally specified timeout period.

xTaskCheckForTimeOut()
performs the adjustment, taking into account occasional occurrences such as tick count overflows, which would otherwise make a manual adjustment prone to error.

vTaskSetTimeOutState()
is used with
xTaskCheckForTimeOut()
.
vTaskSetTimeOutState()
is called to set the initial condition, after which
xTaskCheckForTimeOut()
can be called to check for a timeout condition, and adjust the remaining block time if a timeout has not occurred.

Parameters:

  • pxTimeOut

    A pointer to a structure that will be initialized to hold information necessary to determine if a timeout has occurred.

Example usage:

An example is provided on the xTaskCheckForTimeOut() documentation page.