xTaskCreateStatic() is only used within FreeRTOS.
 
Symbols
loading...
Files
loading (1/3)...
SummarySyntaxArgumentsReferencesCall TreeData Use

Return value

If neither puxStackBuffer nor pxTaskBuffer are NULL, then the task will be created and a handle to the created task is returned. If either puxStackBuffer or pxTaskBuffer are NULL then the task will not be created and NULL is returned.

Notes

If configNUMBER_OF_CORES > 1, this function will create an unpinned task (see tskNO_AFFINITY for more details). If program uses thread local variables (ones specified with "__thread" keyword) then storage for them will be allocated on the task's stack.

References