70 #ifndef INC_FREERTOS_H
71 #error "include FreeRTOS.h must appear in source files before include task.h"
84 #define tskKERNEL_VERSION_NUMBER "V7.5.3"
169 #define tskIDLE_PRIORITY ( ( unsigned portBASE_TYPE ) 0U )
179 #define taskYIELD() portYIELD()
193 #define taskENTER_CRITICAL() portENTER_CRITICAL()
207 #define taskEXIT_CRITICAL() portEXIT_CRITICAL()
217 #define taskDISABLE_INTERRUPTS() portDISABLE_INTERRUPTS()
227 #define taskENABLE_INTERRUPTS() portENABLE_INTERRUPTS()
230 #define taskSCHEDULER_NOT_STARTED ( ( portBASE_TYPE ) 0 )
231 #define taskSCHEDULER_RUNNING ( ( portBASE_TYPE ) 1 )
232 #define taskSCHEDULER_SUSPENDED ( ( portBASE_TYPE ) 2 )
314 #define xTaskCreate( pvTaskCode, pcName, usStackDepth, pvParameters, uxPriority, pxCreatedTask ) xTaskGenericCreate( ( pvTaskCode ), ( pcName ), ( usStackDepth ), ( pvParameters ), ( uxPriority ), ( pxCreatedTask ), ( NULL ), ( NULL ) )
383 #define xTaskCreateRestricted( x, pxCreatedTask ) xTaskGenericCreate( ((x)->pvTaskCode), ((x)->pcName), ((x)->usStackDepth), ((x)->pvParameters), ((x)->uxPriority), (pxCreatedTask), ((x)->puxStackBuffer), ((x)->xRegions) )
1104 #ifdef configUSE_APPLICATION_TASK_TAG
1105 #if configUSE_APPLICATION_TASK_TAG == 1