You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: include/task.h
+5-3Lines changed: 5 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -167,9 +167,11 @@ typedef struct xTASK_STATUS
167
167
/* Possible return values for eTaskConfirmSleepModeStatus(). */
168
168
typedefenum
169
169
{
170
-
eAbortSleep=0, /* A task has been made ready or a context switch pended since portSUPPRESS_TICKS_AND_SLEEP() was called - abort entering a sleep mode. */
171
-
eStandardSleep, /* Enter a sleep mode that will not last any longer than the expected idle time. */
172
-
eNoTasksWaitingTimeout/* No tasks are waiting for a timeout so it is safe to enter a sleep mode that can only be exited by an external interrupt. */
170
+
eAbortSleep=0, /* A task has been made ready or a context switch pended since portSUPPRESS_TICKS_AND_SLEEP() was called - abort entering a sleep mode. */
171
+
eStandardSleep, /* Enter a sleep mode that will not last any longer than the expected idle time. */
172
+
#if ( INCLUDE_vTaskSuspend==1 )
173
+
eNoTasksWaitingTimeout/* No tasks are waiting for a timeout so it is safe to enter a sleep mode that can only be exited by an external interrupt. */
0 commit comments