GM6000 Digital Heater Controller Branch: main
SDX-1330
task.h
1/*
2 * FreeRTOS Kernel V10.0.0
3 * Copyright (C) 2017 Amazon.com, Inc. or its affiliates. All Rights Reserved.
4 *
5 * Permission is hereby granted, free of charge, to any person obtaining a copy of
6 * this software and associated documentation files (the "Software"), to deal in
7 * the Software without restriction, including without limitation the rights to
8 * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
9 * the Software, and to permit persons to whom the Software is furnished to do so,
10 * subject to the following conditions:
11 *
12 * The above copyright notice and this permission notice shall be included in all
13 * copies or substantial portions of the Software. If you wish to use our Amazon
14 * FreeRTOS name, please do so in a fair use way that does not cause confusion.
15 *
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
18 * FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
19 * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
20 * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
21 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
22 *
23 * http://www.FreeRTOS.org
24 * http://aws.amazon.com/freertos
25 *
26 * 1 tab == 4 spaces!
27 */
28
29#ifndef INC_TASK_H
30#define INC_TASK_H
31
32#ifndef INC_FREERTOS_H
33#error "include FreeRTOS.h must appear in source files before include task.h"
34#endif
35
36#include "list.h"
37
38#ifdef __cplusplus
39extern "C" {
40#endif
41
42/*-----------------------------------------------------------
43 * MACROS AND DEFINITIONS
44 *----------------------------------------------------------*/
45
46#define tskKERNEL_VERSION_NUMBER "V9.0.0"
47#define tskKERNEL_VERSION_MAJOR 9
48#define tskKERNEL_VERSION_MINOR 0
49#define tskKERNEL_VERSION_BUILD 0
50
51/**
52 * task. h
53 *
54 * Type by which tasks are referenced. For example, a call to xTaskCreate
55 * returns (via a pointer parameter) an TaskHandle_t variable that can then
56 * be used as a parameter to vTaskDelete to delete the task.
57 *
58 * \defgroup TaskHandle_t TaskHandle_t
59 * \ingroup Tasks
60 */
61typedef void *TaskHandle_t;
62
63/*
64 * Defines the prototype to which the application task hook function must
65 * conform.
66 */
67typedef BaseType_t (*TaskHookFunction_t)(void *);
68
69/* Task states returned by eTaskGetState. */
70typedef enum {
71 eRunning = 0, /* A task is querying the state of itself, so must be running. */
72 eReady, /* The task being queried is in a read or pending ready list. */
73 eBlocked, /* The task being queried is in the Blocked state. */
74 eSuspended, /* The task being queried is in the Suspended state, or is in the Blocked state with an infinite time
75 out. */
76 eDeleted, /* The task being queried has been deleted, but its TCB has not yet been freed. */
77 eInvalid /* Used as an 'invalid state' value. */
78} eTaskState;
79
80/* Actions that can be performed when vTaskNotify() is called. */
81typedef enum {
82 eNoAction = 0, /* Notify the task without updating its notify value. */
83 eSetBits, /* Set bits in the task's notification value. */
84 eIncrement, /* Increment the task's notification value. */
85 eSetValueWithOverwrite, /* Set the task's notification value to a specific value even if the previous value has not
86 yet been read by the task. */
87 eSetValueWithoutOverwrite /* Set the task's notification value if the previous value has been read by the task. */
88} eNotifyAction;
89
90/*
91 * Used internally only.
92 */
93typedef struct xTIME_OUT {
94 BaseType_t xOverflowCount;
95 TickType_t xTimeOnEntering;
96} TimeOut_t;
97
98/*
99 * Defines the memory ranges allocated to the task when an MPU is used.
100 */
101typedef struct xMEMORY_REGION {
102 void * pvBaseAddress;
103 uint32_t ulLengthInBytes;
104 uint32_t ulParameters;
106
107/*
108 * Parameters required to create an MPU protected task.
109 */
110typedef struct xTASK_PARAMETERS {
111 TaskFunction_t pvTaskCode;
112 const char *const pcName; /*lint !e971 Unqualified char types are allowed for strings and single characters only. */
113 uint16_t usStackDepth;
114 void * pvParameters;
115 UBaseType_t uxPriority;
116 StackType_t * puxStackBuffer;
117 MemoryRegion_t xRegions[portNUM_CONFIGURABLE_REGIONS];
118#if ((portUSING_MPU_WRAPPERS == 1) && (configSUPPORT_STATIC_ALLOCATION == 1))
119 StaticTask_t *const pxTaskBuffer;
120#endif
122
123/* Used with the uxTaskGetSystemState() function to return the state of each task
124in the system. */
125typedef struct xTASK_STATUS {
126 TaskHandle_t xHandle; /* The handle of the task to which the rest of the information in the structure relates. */
127 const char * pcTaskName;
128 /* A pointer to the task's name. This value will be invalid if the task was deleted since the structure was populated! */ /*lint !e971 Unqualified char types are allowed for strings and single characters only. */
129 UBaseType_t xTaskNumber; /* A number unique to the task. */
130 eTaskState eCurrentState; /* The state in which the task existed when the structure was populated. */
131 UBaseType_t uxCurrentPriority; /* The priority at which the task was running (may be inherited) when the structure
132 was populated. */
133 UBaseType_t uxBasePriority; /* The priority to which the task will return if the task's current priority has been
134 inherited to avoid unbounded priority inversion when obtaining a mutex. Only valid
135 if configUSE_MUTEXES is defined as 1 in FreeRTOSConfig.h. */
136 uint32_t ulRunTimeCounter; /* The total run time allocated to the task so far, as defined by the run time stats
137 clock. See http://www.freertos.org/rtos-run-time-stats.html. Only valid when
138 configGENERATE_RUN_TIME_STATS is defined as 1 in FreeRTOSConfig.h. */
139 StackType_t *pxStackBase; /* Points to the lowest address of the task's stack area. */
140 uint16_t usStackHighWaterMark; /* The minimum amount of stack space that has remained for the task since the task
141 was created. The closer this value is to zero the closer the task has come to
142 overflowing its stack. */
144
145/* Possible return values for eTaskConfirmSleepModeStatus(). */
146typedef enum {
147 eAbortSleep
148 = 0, /* A task has been made ready or a context switch pended since portSUPPORESS_TICKS_AND_SLEEP() was called -
149 abort entering a sleep mode. */
150 eStandardSleep, /* Enter a sleep mode that will not last any longer than the expected idle time. */
151 eNoTasksWaitingTimeout /* No tasks are waiting for a timeout so it is safe to enter a sleep mode that can only be
152 exited by an external interrupt. */
153} eSleepModeStatus;
154
155/**
156 * Defines the priority used by the idle task. This must not be modified.
157 *
158 * \ingroup TaskUtils
159 */
160#define tskIDLE_PRIORITY ((UBaseType_t)0U)
161
162/**
163 * task. h
164 *
165 * Macro for forcing a context switch.
166 *
167 * \defgroup taskYIELD taskYIELD
168 * \ingroup SchedulerControl
169 */
170#define taskYIELD() portYIELD()
171
172/**
173 * task. h
174 *
175 * Macro to mark the start of a critical code region. Preemptive context
176 * switches cannot occur when in a critical region.
177 *
178 * NOTE: This may alter the stack (depending on the portable implementation)
179 * so must be used with care!
180 *
181 * \defgroup taskENTER_CRITICAL taskENTER_CRITICAL
182 * \ingroup SchedulerControl
183 */
184#define taskENTER_CRITICAL() portENTER_CRITICAL()
185#define taskENTER_CRITICAL_FROM_ISR() portSET_INTERRUPT_MASK_FROM_ISR()
186
187/**
188 * task. h
189 *
190 * Macro to mark the end of a critical code region. Preemptive context
191 * switches cannot occur when in a critical region.
192 *
193 * NOTE: This may alter the stack (depending on the portable implementation)
194 * so must be used with care!
195 *
196 * \defgroup taskEXIT_CRITICAL taskEXIT_CRITICAL
197 * \ingroup SchedulerControl
198 */
199#define taskEXIT_CRITICAL() portEXIT_CRITICAL()
200#define taskEXIT_CRITICAL_FROM_ISR(x) portCLEAR_INTERRUPT_MASK_FROM_ISR(x)
201/**
202 * task. h
203 *
204 * Macro to disable all maskable interrupts.
205 *
206 * \defgroup taskDISABLE_INTERRUPTS taskDISABLE_INTERRUPTS
207 * \ingroup SchedulerControl
208 */
209#define taskDISABLE_INTERRUPTS() portDISABLE_INTERRUPTS()
210
211/**
212 * task. h
213 *
214 * Macro to enable microcontroller interrupts.
215 *
216 * \defgroup taskENABLE_INTERRUPTS taskENABLE_INTERRUPTS
217 * \ingroup SchedulerControl
218 */
219#define taskENABLE_INTERRUPTS() portENABLE_INTERRUPTS()
220
221/* Definitions returned by xTaskGetSchedulerState(). taskSCHEDULER_SUSPENDED is
2220 to generate more optimal code when configASSERT() is defined as the constant
223is used in assert() statements. */
224#define taskSCHEDULER_SUSPENDED ((BaseType_t)0)
225#define taskSCHEDULER_NOT_STARTED ((BaseType_t)1)
226#define taskSCHEDULER_RUNNING ((BaseType_t)2)
227
228/*-----------------------------------------------------------
229 * TASK CREATION API
230 *----------------------------------------------------------*/
231
232/**
233 * task. h
234 *<pre>
235 BaseType_t xTaskCreate(
236 TaskFunction_t pvTaskCode,
237 const char * const pcName,
238 configSTACK_DEPTH_TYPE usStackDepth,
239 void *pvParameters,
240 UBaseType_t uxPriority,
241 TaskHandle_t *pvCreatedTask
242 );</pre>
243 *
244 * Create a new task and add it to the list of tasks that are ready to run.
245 *
246 * Internally, within the FreeRTOS implementation, tasks use two blocks of
247 * memory. The first block is used to hold the task's data structures. The
248 * second block is used by the task as its stack. If a task is created using
249 * xTaskCreate() then both blocks of memory are automatically dynamically
250 * allocated inside the xTaskCreate() function. (see
251 * http://www.freertos.org/a00111.html). If a task is created using
252 * xTaskCreateStatic() then the application writer must provide the required
253 * memory. xTaskCreateStatic() therefore allows a task to be created without
254 * using any dynamic memory allocation.
255 *
256 * See xTaskCreateStatic() for a version that does not use any dynamic memory
257 * allocation.
258 *
259 * xTaskCreate() can only be used to create a task that has unrestricted
260 * access to the entire microcontroller memory map. Systems that include MPU
261 * support can alternatively create an MPU constrained task using
262 * xTaskCreateRestricted().
263 *
264 * @param pvTaskCode Pointer to the task entry function. Tasks
265 * must be implemented to never return (i.e. continuous loop).
266 *
267 * @param pcName A descriptive name for the task. This is mainly used to
268 * facilitate debugging. Max length defined by configMAX_TASK_NAME_LEN - default
269 * is 16.
270 *
271 * @param usStackDepth The size of the task stack specified as the number of
272 * variables the stack can hold - not the number of bytes. For example, if
273 * the stack is 16 bits wide and usStackDepth is defined as 100, 200 bytes
274 * will be allocated for stack storage.
275 *
276 * @param pvParameters Pointer that will be used as the parameter for the task
277 * being created.
278 *
279 * @param uxPriority The priority at which the task should run. Systems that
280 * include MPU support can optionally create tasks in a privileged (system)
281 * mode by setting bit portPRIVILEGE_BIT of the priority parameter. For
282 * example, to create a privileged task at priority 2 the uxPriority parameter
283 * should be set to ( 2 | portPRIVILEGE_BIT ).
284 *
285 * @param pvCreatedTask Used to pass back a handle by which the created task
286 * can be referenced.
287 *
288 * @return pdPASS if the task was successfully created and added to a ready
289 * list, otherwise an error code defined in the file projdefs.h
290 *
291 * Example usage:
292 <pre>
293 // Task to be created.
294 void vTaskCode( void * pvParameters )
295 {
296 for( ;; )
297 {
298 // Task code goes here.
299 }
300 }
301
302 // Function that creates a task.
303 void vOtherFunction( void )
304 {
305 static uint8_t ucParameterToPass;
306 TaskHandle_t xHandle = NULL;
307
308 // Create the task, storing the handle. Note that the passed parameter ucParameterToPass
309 // must exist for the lifetime of the task, so in this case is declared static. If it was just an
310 // an automatic stack variable it might no longer exist, or at least have been corrupted, by the time
311 // the new task attempts to access it.
312 xTaskCreate( vTaskCode, "NAME", STACK_SIZE, &ucParameterToPass, tskIDLE_PRIORITY, &xHandle );
313 configASSERT( xHandle );
314
315 // Use the handle to delete the task.
316 if( xHandle != NULL )
317 {
318 vTaskDelete( xHandle );
319 }
320 }
321 </pre>
322 * \defgroup xTaskCreate xTaskCreate
323 * \ingroup Tasks
324 */
325#if (configSUPPORT_DYNAMIC_ALLOCATION == 1)
326BaseType_t xTaskCreate(
327 TaskFunction_t pxTaskCode,
328 const char *const pcName, /*lint !e971 Unqualified char types are allowed for strings and single characters only. */
329 const configSTACK_DEPTH_TYPE usStackDepth, void *const pvParameters, UBaseType_t uxPriority,
330 TaskHandle_t *const pxCreatedTask) PRIVILEGED_FUNCTION;
331#endif
332
333/**
334 * task. h
335 *<pre>
336 TaskHandle_t xTaskCreateStatic( TaskFunction_t pvTaskCode,
337 const char * const pcName,
338 uint32_t ulStackDepth,
339 void *pvParameters,
340 UBaseType_t uxPriority,
341 StackType_t *pxStackBuffer,
342 StaticTask_t *pxTaskBuffer );</pre>
343 *
344 * Create a new task and add it to the list of tasks that are ready to run.
345 *
346 * Internally, within the FreeRTOS implementation, tasks use two blocks of
347 * memory. The first block is used to hold the task's data structures. The
348 * second block is used by the task as its stack. If a task is created using
349 * xTaskCreate() then both blocks of memory are automatically dynamically
350 * allocated inside the xTaskCreate() function. (see
351 * http://www.freertos.org/a00111.html). If a task is created using
352 * xTaskCreateStatic() then the application writer must provide the required
353 * memory. xTaskCreateStatic() therefore allows a task to be created without
354 * using any dynamic memory allocation.
355 *
356 * @param pvTaskCode Pointer to the task entry function. Tasks
357 * must be implemented to never return (i.e. continuous loop).
358 *
359 * @param pcName A descriptive name for the task. This is mainly used to
360 * facilitate debugging. The maximum length of the string is defined by
361 * configMAX_TASK_NAME_LEN in FreeRTOSConfig.h.
362 *
363 * @param ulStackDepth The size of the task stack specified as the number of
364 * variables the stack can hold - not the number of bytes. For example, if
365 * the stack is 32-bits wide and ulStackDepth is defined as 100 then 400 bytes
366 * will be allocated for stack storage.
367 *
368 * @param pvParameters Pointer that will be used as the parameter for the task
369 * being created.
370 *
371 * @param uxPriority The priority at which the task will run.
372 *
373 * @param pxStackBuffer Must point to a StackType_t array that has at least
374 * ulStackDepth indexes - the array will then be used as the task's stack,
375 * removing the need for the stack to be allocated dynamically.
376 *
377 * @param pxTaskBuffer Must point to a variable of type StaticTask_t, which will
378 * then be used to hold the task's data structures, removing the need for the
379 * memory to be allocated dynamically.
380 *
381 * @return If neither pxStackBuffer or pxTaskBuffer are NULL, then the task will
382 * be created and pdPASS is returned. If either pxStackBuffer or pxTaskBuffer
383 * are NULL then the task will not be created and
384 * errCOULD_NOT_ALLOCATE_REQUIRED_MEMORY is returned.
385 *
386 * Example usage:
387 <pre>
388
389 // Dimensions the buffer that the task being created will use as its stack.
390 // NOTE: This is the number of words the stack will hold, not the number of
391 // bytes. For example, if each stack item is 32-bits, and this is set to 100,
392 // then 400 bytes (100 * 32-bits) will be allocated.
393 #define STACK_SIZE 200
394
395 // Structure that will hold the TCB of the task being created.
396 StaticTask_t xTaskBuffer;
397
398 // Buffer that the task being created will use as its stack. Note this is
399 // an array of StackType_t variables. The size of StackType_t is dependent on
400 // the RTOS port.
401 StackType_t xStack[ STACK_SIZE ];
402
403 // Function that implements the task being created.
404 void vTaskCode( void * pvParameters )
405 {
406 // The parameter value is expected to be 1 as 1 is passed in the
407 // pvParameters value in the call to xTaskCreateStatic().
408 configASSERT( ( uint32_t ) pvParameters == 1UL );
409
410 for( ;; )
411 {
412 // Task code goes here.
413 }
414 }
415
416 // Function that creates a task.
417 void vOtherFunction( void )
418 {
419 TaskHandle_t xHandle = NULL;
420
421 // Create the task without using any dynamic memory allocation.
422 xHandle = xTaskCreateStatic(
423 vTaskCode, // Function that implements the task.
424 "NAME", // Text name for the task.
425 STACK_SIZE, // Stack size in words, not bytes.
426 ( void * ) 1, // Parameter passed into the task.
427 tskIDLE_PRIORITY,// Priority at which the task is created.
428 xStack, // Array to use as the task's stack.
429 &xTaskBuffer ); // Variable to hold the task's data structure.
430
431 // puxStackBuffer and pxTaskBuffer were not NULL, so the task will have
432 // been created, and xHandle will be the task's handle. Use the handle
433 // to suspend the task.
434 vTaskSuspend( xHandle );
435 }
436 </pre>
437 * \defgroup xTaskCreateStatic xTaskCreateStatic
438 * \ingroup Tasks
439 */
440#if (configSUPPORT_STATIC_ALLOCATION == 1)
441TaskHandle_t xTaskCreateStatic(
442 TaskFunction_t pxTaskCode,
443 const char *const pcName, /*lint !e971 Unqualified char types are allowed for strings and single characters only. */
444 const uint32_t ulStackDepth, void *const pvParameters, UBaseType_t uxPriority, StackType_t *const puxStackBuffer,
445 StaticTask_t *const pxTaskBuffer) PRIVILEGED_FUNCTION;
446#endif /* configSUPPORT_STATIC_ALLOCATION */
447
448/**
449 * task. h
450 *<pre>
451 BaseType_t xTaskCreateRestricted( TaskParameters_t *pxTaskDefinition, TaskHandle_t *pxCreatedTask );</pre>
452 *
453 * Only available when configSUPPORT_DYNAMIC_ALLOCATION is set to 1.
454 *
455 * xTaskCreateRestricted() should only be used in systems that include an MPU
456 * implementation.
457 *
458 * Create a new task and add it to the list of tasks that are ready to run.
459 * The function parameters define the memory regions and associated access
460 * permissions allocated to the task.
461 *
462 * See xTaskCreateRestrictedStatic() for a version that does not use any
463 * dynamic memory allocation.
464 *
465 * @param pxTaskDefinition Pointer to a structure that contains a member
466 * for each of the normal xTaskCreate() parameters (see the xTaskCreate() API
467 * documentation) plus an optional stack buffer and the memory region
468 * definitions.
469 *
470 * @param pxCreatedTask Used to pass back a handle by which the created task
471 * can be referenced.
472 *
473 * @return pdPASS if the task was successfully created and added to a ready
474 * list, otherwise an error code defined in the file projdefs.h
475 *
476 * Example usage:
477 <pre>
478// Create an TaskParameters_t structure that defines the task to be created.
479static const TaskParameters_t xCheckTaskParameters =
480{
481 vATask, // pvTaskCode - the function that implements the task.
482 "ATask", // pcName - just a text name for the task to assist debugging.
483 100, // usStackDepth - the stack size DEFINED IN WORDS.
484 NULL, // pvParameters - passed into the task function as the function parameters.
485 ( 1UL | portPRIVILEGE_BIT ),// uxPriority - task priority, set the portPRIVILEGE_BIT if the task should run in a
486privileged state. cStackBuffer,// puxStackBuffer - the buffer to be used as the task stack.
487
488 // xRegions - Allocate up to three separate memory regions for access by
489 // the task, with appropriate access permissions. Different processors have
490 // different memory alignment requirements - refer to the FreeRTOS documentation
491 // for full information.
492 {
493 // Base address Length Parameters
494 { cReadWriteArray, 32, portMPU_REGION_READ_WRITE },
495 { cReadOnlyArray, 32, portMPU_REGION_READ_ONLY },
496 { cPrivilegedOnlyAccessArray, 128, portMPU_REGION_PRIVILEGED_READ_WRITE }
497 }
498};
499
500int main( void )
501{
502TaskHandle_t xHandle;
503
504 // Create a task from the const structure defined above. The task handle
505 // is requested (the second parameter is not NULL) but in this case just for
506 // demonstration purposes as its not actually used.
507 xTaskCreateRestricted( &xRegTest1Parameters, &xHandle );
508
509 // Start the scheduler.
510 vTaskStartScheduler();
511
512 // Will only get here if there was insufficient memory to create the idle
513 // and/or timer task.
514 for( ;; );
515}
516 </pre>
517 * \defgroup xTaskCreateRestricted xTaskCreateRestricted
518 * \ingroup Tasks
519 */
520#if (portUSING_MPU_WRAPPERS == 1)
521BaseType_t xTaskCreateRestricted(const TaskParameters_t *const pxTaskDefinition,
522 TaskHandle_t * pxCreatedTask) PRIVILEGED_FUNCTION;
523#endif
524
525/**
526 * task. h
527 *<pre>
528 BaseType_t xTaskCreateRestrictedStatic( TaskParameters_t *pxTaskDefinition, TaskHandle_t *pxCreatedTask );</pre>
529 *
530 * Only available when configSUPPORT_STATIC_ALLOCATION is set to 1.
531 *
532 * xTaskCreateRestrictedStatic() should only be used in systems that include an
533 * MPU implementation.
534 *
535 * Internally, within the FreeRTOS implementation, tasks use two blocks of
536 * memory. The first block is used to hold the task's data structures. The
537 * second block is used by the task as its stack. If a task is created using
538 * xTaskCreateRestricted() then the stack is provided by the application writer,
539 * and the memory used to hold the task's data structure is automatically
540 * dynamically allocated inside the xTaskCreateRestricted() function. If a task
541 * is created using xTaskCreateRestrictedStatic() then the application writer
542 * must provide the memory used to hold the task's data structures too.
543 * xTaskCreateRestrictedStatic() therefore allows a memory protected task to be
544 * created without using any dynamic memory allocation.
545 *
546 * @param pxTaskDefinition Pointer to a structure that contains a member
547 * for each of the normal xTaskCreate() parameters (see the xTaskCreate() API
548 * documentation) plus an optional stack buffer and the memory region
549 * definitions. If configSUPPORT_STATIC_ALLOCATION is set to 1 the structure
550 * contains an additional member, which is used to point to a variable of type
551 * StaticTask_t - which is then used to hold the task's data structure.
552 *
553 * @param pxCreatedTask Used to pass back a handle by which the created task
554 * can be referenced.
555 *
556 * @return pdPASS if the task was successfully created and added to a ready
557 * list, otherwise an error code defined in the file projdefs.h
558 *
559 * Example usage:
560 <pre>
561// Create an TaskParameters_t structure that defines the task to be created.
562// The StaticTask_t variable is only included in the structure when
563// configSUPPORT_STATIC_ALLOCATION is set to 1. The PRIVILEGED_DATA macro can
564// be used to force the variable into the RTOS kernel's privileged data area.
565static PRIVILEGED_DATA StaticTask_t xTaskBuffer;
566static const TaskParameters_t xCheckTaskParameters =
567{
568 vATask, // pvTaskCode - the function that implements the task.
569 "ATask", // pcName - just a text name for the task to assist debugging.
570 100, // usStackDepth - the stack size DEFINED IN WORDS.
571 NULL, // pvParameters - passed into the task function as the function parameters.
572 ( 1UL | portPRIVILEGE_BIT ),// uxPriority - task priority, set the portPRIVILEGE_BIT if the task should run in a
573privileged state. cStackBuffer,// puxStackBuffer - the buffer to be used as the task stack.
574
575 // xRegions - Allocate up to three separate memory regions for access by
576 // the task, with appropriate access permissions. Different processors have
577 // different memory alignment requirements - refer to the FreeRTOS documentation
578 // for full information.
579 {
580 // Base address Length Parameters
581 { cReadWriteArray, 32, portMPU_REGION_READ_WRITE },
582 { cReadOnlyArray, 32, portMPU_REGION_READ_ONLY },
583 { cPrivilegedOnlyAccessArray, 128, portMPU_REGION_PRIVILEGED_READ_WRITE }
584 }
585
586 &xTaskBuffer; // Holds the task's data structure.
587};
588
589int main( void )
590{
591TaskHandle_t xHandle;
592
593 // Create a task from the const structure defined above. The task handle
594 // is requested (the second parameter is not NULL) but in this case just for
595 // demonstration purposes as its not actually used.
596 xTaskCreateRestricted( &xRegTest1Parameters, &xHandle );
597
598 // Start the scheduler.
599 vTaskStartScheduler();
600
601 // Will only get here if there was insufficient memory to create the idle
602 // and/or timer task.
603 for( ;; );
604}
605 </pre>
606 * \defgroup xTaskCreateRestrictedStatic xTaskCreateRestrictedStatic
607 * \ingroup Tasks
608 */
609#if ((portUSING_MPU_WRAPPERS == 1) && (configSUPPORT_STATIC_ALLOCATION == 1))
610BaseType_t xTaskCreateRestrictedStatic(const TaskParameters_t *const pxTaskDefinition,
611 TaskHandle_t * pxCreatedTask) PRIVILEGED_FUNCTION;
612#endif
613
614/**
615 * task. h
616 *<pre>
617 void vTaskAllocateMPURegions( TaskHandle_t xTask, const MemoryRegion_t * const pxRegions );</pre>
618 *
619 * Memory regions are assigned to a restricted task when the task is created by
620 * a call to xTaskCreateRestricted(). These regions can be redefined using
621 * vTaskAllocateMPURegions().
622 *
623 * @param xTask The handle of the task being updated.
624 *
625 * @param xRegions A pointer to an MemoryRegion_t structure that contains the
626 * new memory region definitions.
627 *
628 * Example usage:
629 <pre>
630// Define an array of MemoryRegion_t structures that configures an MPU region
631// allowing read/write access for 1024 bytes starting at the beginning of the
632// ucOneKByte array. The other two of the maximum 3 definable regions are
633// unused so set to zero.
634static const MemoryRegion_t xAltRegions[ portNUM_CONFIGURABLE_REGIONS ] =
635{
636 // Base address Length Parameters
637 { ucOneKByte, 1024, portMPU_REGION_READ_WRITE },
638 { 0, 0, 0 },
639 { 0, 0, 0 }
640};
641
642void vATask( void *pvParameters )
643{
644 // This task was created such that it has access to certain regions of
645 // memory as defined by the MPU configuration. At some point it is
646 // desired that these MPU regions are replaced with that defined in the
647 // xAltRegions const struct above. Use a call to vTaskAllocateMPURegions()
648 // for this purpose. NULL is used as the task handle to indicate that this
649 // function should modify the MPU regions of the calling task.
650 vTaskAllocateMPURegions( NULL, xAltRegions );
651
652 // Now the task can continue its function, but from this point on can only
653 // access its stack and the ucOneKByte array (unless any other statically
654 // defined or shared regions have been declared elsewhere).
655}
656 </pre>
657 * \defgroup xTaskCreateRestricted xTaskCreateRestricted
658 * \ingroup Tasks
659 */
660void vTaskAllocateMPURegions(TaskHandle_t xTask, const MemoryRegion_t *const pxRegions) PRIVILEGED_FUNCTION;
661
662/**
663 * task. h
664 * <pre>void vTaskDelete( TaskHandle_t xTask );</pre>
665 *
666 * INCLUDE_vTaskDelete must be defined as 1 for this function to be available.
667 * See the configuration section for more information.
668 *
669 * Remove a task from the RTOS real time kernel's management. The task being
670 * deleted will be removed from all ready, blocked, suspended and event lists.
671 *
672 * NOTE: The idle task is responsible for freeing the kernel allocated
673 * memory from tasks that have been deleted. It is therefore important that
674 * the idle task is not starved of microcontroller processing time if your
675 * application makes any calls to vTaskDelete (). Memory allocated by the
676 * task code is not automatically freed, and should be freed before the task
677 * is deleted.
678 *
679 * See the demo application file death.c for sample code that utilises
680 * vTaskDelete ().
681 *
682 * @param xTask The handle of the task to be deleted. Passing NULL will
683 * cause the calling task to be deleted.
684 *
685 * Example usage:
686 <pre>
687 void vOtherFunction( void )
688 {
689 TaskHandle_t xHandle;
690
691 // Create the task, storing the handle.
692 xTaskCreate( vTaskCode, "NAME", STACK_SIZE, NULL, tskIDLE_PRIORITY, &xHandle );
693
694 // Use the handle to delete the task.
695 vTaskDelete( xHandle );
696 }
697 </pre>
698 * \defgroup vTaskDelete vTaskDelete
699 * \ingroup Tasks
700 */
701void vTaskDelete(TaskHandle_t xTaskToDelete) PRIVILEGED_FUNCTION;
702
703/*-----------------------------------------------------------
704 * TASK CONTROL API
705 *----------------------------------------------------------*/
706
707/**
708 * task. h
709 * <pre>void vTaskDelay( const TickType_t xTicksToDelay );</pre>
710 *
711 * Delay a task for a given number of ticks. The actual time that the
712 * task remains blocked depends on the tick rate. The constant
713 * portTICK_PERIOD_MS can be used to calculate real time from the tick
714 * rate - with the resolution of one tick period.
715 *
716 * INCLUDE_vTaskDelay must be defined as 1 for this function to be available.
717 * See the configuration section for more information.
718 *
719 *
720 * vTaskDelay() specifies a time at which the task wishes to unblock relative to
721 * the time at which vTaskDelay() is called. For example, specifying a block
722 * period of 100 ticks will cause the task to unblock 100 ticks after
723 * vTaskDelay() is called. vTaskDelay() does not therefore provide a good method
724 * of controlling the frequency of a periodic task as the path taken through the
725 * code, as well as other task and interrupt activity, will effect the frequency
726 * at which vTaskDelay() gets called and therefore the time at which the task
727 * next executes. See vTaskDelayUntil() for an alternative API function designed
728 * to facilitate fixed frequency execution. It does this by specifying an
729 * absolute time (rather than a relative time) at which the calling task should
730 * unblock.
731 *
732 * @param xTicksToDelay The amount of time, in tick periods, that
733 * the calling task should block.
734 *
735 * Example usage:
736
737 void vTaskFunction( void * pvParameters )
738 {
739 // Block for 500ms.
740 const TickType_t xDelay = 500 / portTICK_PERIOD_MS;
741
742 for( ;; )
743 {
744 // Simply toggle the LED every 500ms, blocking between each toggle.
745 vToggleLED();
746 vTaskDelay( xDelay );
747 }
748 }
749
750 * \defgroup vTaskDelay vTaskDelay
751 * \ingroup TaskCtrl
752 */
753void vTaskDelay(const TickType_t xTicksToDelay) PRIVILEGED_FUNCTION;
754
755/**
756 * task. h
757 * <pre>void vTaskDelayUntil( TickType_t *pxPreviousWakeTime, const TickType_t xTimeIncrement );</pre>
758 *
759 * INCLUDE_vTaskDelayUntil must be defined as 1 for this function to be available.
760 * See the configuration section for more information.
761 *
762 * Delay a task until a specified time. This function can be used by periodic
763 * tasks to ensure a constant execution frequency.
764 *
765 * This function differs from vTaskDelay () in one important aspect: vTaskDelay () will
766 * cause a task to block for the specified number of ticks from the time vTaskDelay () is
767 * called. It is therefore difficult to use vTaskDelay () by itself to generate a fixed
768 * execution frequency as the time between a task starting to execute and that task
769 * calling vTaskDelay () may not be fixed [the task may take a different path though the
770 * code between calls, or may get interrupted or preempted a different number of times
771 * each time it executes].
772 *
773 * Whereas vTaskDelay () specifies a wake time relative to the time at which the function
774 * is called, vTaskDelayUntil () specifies the absolute (exact) time at which it wishes to
775 * unblock.
776 *
777 * The constant portTICK_PERIOD_MS can be used to calculate real time from the tick
778 * rate - with the resolution of one tick period.
779 *
780 * @param pxPreviousWakeTime Pointer to a variable that holds the time at which the
781 * task was last unblocked. The variable must be initialised with the current time
782 * prior to its first use (see the example below). Following this the variable is
783 * automatically updated within vTaskDelayUntil ().
784 *
785 * @param xTimeIncrement The cycle time period. The task will be unblocked at
786 * time *pxPreviousWakeTime + xTimeIncrement. Calling vTaskDelayUntil with the
787 * same xTimeIncrement parameter value will cause the task to execute with
788 * a fixed interface period.
789 *
790 * Example usage:
791 <pre>
792 // Perform an action every 10 ticks.
793 void vTaskFunction( void * pvParameters )
794 {
795 TickType_t xLastWakeTime;
796 const TickType_t xFrequency = 10;
797
798 // Initialise the xLastWakeTime variable with the current time.
799 xLastWakeTime = xTaskGetTickCount ();
800 for( ;; )
801 {
802 // Wait for the next cycle.
803 vTaskDelayUntil( &xLastWakeTime, xFrequency );
804
805 // Perform action here.
806 }
807 }
808 </pre>
809 * \defgroup vTaskDelayUntil vTaskDelayUntil
810 * \ingroup TaskCtrl
811 */
812void vTaskDelayUntil(TickType_t *const pxPreviousWakeTime, const TickType_t xTimeIncrement) PRIVILEGED_FUNCTION;
813
814/**
815 * task. h
816 * <pre>BaseType_t xTaskAbortDelay( TaskHandle_t xTask );</pre>
817 *
818 * INCLUDE_xTaskAbortDelay must be defined as 1 in FreeRTOSConfig.h for this
819 * function to be available.
820 *
821 * A task will enter the Blocked state when it is waiting for an event. The
822 * event it is waiting for can be a temporal event (waiting for a time), such
823 * as when vTaskDelay() is called, or an event on an object, such as when
824 * xQueueReceive() or ulTaskNotifyTake() is called. If the handle of a task
825 * that is in the Blocked state is used in a call to xTaskAbortDelay() then the
826 * task will leave the Blocked state, and return from whichever function call
827 * placed the task into the Blocked state.
828 *
829 * @param xTask The handle of the task to remove from the Blocked state.
830 *
831 * @return If the task referenced by xTask was not in the Blocked state then
832 * pdFAIL is returned. Otherwise pdPASS is returned.
833 *
834 * \defgroup xTaskAbortDelay xTaskAbortDelay
835 * \ingroup TaskCtrl
836 */
837BaseType_t xTaskAbortDelay(TaskHandle_t xTask) PRIVILEGED_FUNCTION;
838
839/**
840 * task. h
841 * <pre>UBaseType_t uxTaskPriorityGet( TaskHandle_t xTask );</pre>
842 *
843 * INCLUDE_uxTaskPriorityGet must be defined as 1 for this function to be available.
844 * See the configuration section for more information.
845 *
846 * Obtain the priority of any task.
847 *
848 * @param xTask Handle of the task to be queried. Passing a NULL
849 * handle results in the priority of the calling task being returned.
850 *
851 * @return The priority of xTask.
852 *
853 * Example usage:
854 <pre>
855 void vAFunction( void )
856 {
857 TaskHandle_t xHandle;
858
859 // Create a task, storing the handle.
860 xTaskCreate( vTaskCode, "NAME", STACK_SIZE, NULL, tskIDLE_PRIORITY, &xHandle );
861
862 // ...
863
864 // Use the handle to obtain the priority of the created task.
865 // It was created with tskIDLE_PRIORITY, but may have changed
866 // it itself.
867 if( uxTaskPriorityGet( xHandle ) != tskIDLE_PRIORITY )
868 {
869 // The task has changed it's priority.
870 }
871
872 // ...
873
874 // Is our priority higher than the created task?
875 if( uxTaskPriorityGet( xHandle ) < uxTaskPriorityGet( NULL ) )
876 {
877 // Our priority (obtained using NULL handle) is higher.
878 }
879 }
880 </pre>
881 * \defgroup uxTaskPriorityGet uxTaskPriorityGet
882 * \ingroup TaskCtrl
883 */
884UBaseType_t uxTaskPriorityGet(TaskHandle_t xTask) PRIVILEGED_FUNCTION;
885
886/**
887 * task. h
888 * <pre>UBaseType_t uxTaskPriorityGetFromISR( TaskHandle_t xTask );</pre>
889 *
890 * A version of uxTaskPriorityGet() that can be used from an ISR.
891 */
892UBaseType_t uxTaskPriorityGetFromISR(TaskHandle_t xTask) PRIVILEGED_FUNCTION;
893
894/**
895 * task. h
896 * <pre>eTaskState eTaskGetState( TaskHandle_t xTask );</pre>
897 *
898 * INCLUDE_eTaskGetState must be defined as 1 for this function to be available.
899 * See the configuration section for more information.
900 *
901 * Obtain the state of any task. States are encoded by the eTaskState
902 * enumerated type.
903 *
904 * @param xTask Handle of the task to be queried.
905 *
906 * @return The state of xTask at the time the function was called. Note the
907 * state of the task might change between the function being called, and the
908 * functions return value being tested by the calling task.
909 */
910eTaskState eTaskGetState(TaskHandle_t xTask) PRIVILEGED_FUNCTION;
911
912/**
913 * task. h
914 * <pre>void vTaskGetInfo( TaskHandle_t xTask, TaskStatus_t *pxTaskStatus, BaseType_t xGetFreeStackSpace, eTaskState eState );</pre>
915 *
916 * configUSE_TRACE_FACILITY must be defined as 1 for this function to be
917 * available. See the configuration section for more information.
918 *
919 * Populates a TaskStatus_t structure with information about a task.
920 *
921 * @param xTask Handle of the task being queried. If xTask is NULL then
922 * information will be returned about the calling task.
923 *
924 * @param pxTaskStatus A pointer to the TaskStatus_t structure that will be
925 * filled with information about the task referenced by the handle passed using
926 * the xTask parameter.
927 *
928 * @xGetFreeStackSpace The TaskStatus_t structure contains a member to report
929 * the stack high water mark of the task being queried. Calculating the stack
930 * high water mark takes a relatively long time, and can make the system
931 * temporarily unresponsive - so the xGetFreeStackSpace parameter is provided to
932 * allow the high water mark checking to be skipped. The high watermark value
933 * will only be written to the TaskStatus_t structure if xGetFreeStackSpace is
934 * not set to pdFALSE;
935 *
936 * @param eState The TaskStatus_t structure contains a member to report the
937 * state of the task being queried. Obtaining the task state is not as fast as
938 * a simple assignment - so the eState parameter is provided to allow the state
939 * information to be omitted from the TaskStatus_t structure. To obtain state
940 * information then set eState to eInvalid - otherwise the value passed in
941 * eState will be reported as the task state in the TaskStatus_t structure.
942 *
943 * Example usage:
944 <pre>
945 void vAFunction( void )
946 {
947 TaskHandle_t xHandle;
948 TaskStatus_t xTaskDetails;
949
950 // Obtain the handle of a task from its name.
951 xHandle = xTaskGetHandle( "Task_Name" );
952
953 // Check the handle is not NULL.
954 configASSERT( xHandle );
955
956 // Use the handle to obtain further information about the task.
957 vTaskGetInfo( xHandle,
958 &xTaskDetails,
959 pdTRUE, // Include the high water mark in xTaskDetails.
960 eInvalid ); // Include the task state in xTaskDetails.
961 }
962 </pre>
963 * \defgroup vTaskGetInfo vTaskGetInfo
964 * \ingroup TaskCtrl
965 */
966void vTaskGetInfo(TaskHandle_t xTask, TaskStatus_t *pxTaskStatus, BaseType_t xGetFreeStackSpace,
967 eTaskState eState) PRIVILEGED_FUNCTION;
968
969/**
970 * task. h
971 * <pre>void vTaskPrioritySet( TaskHandle_t xTask, UBaseType_t uxNewPriority );</pre>
972 *
973 * INCLUDE_vTaskPrioritySet must be defined as 1 for this function to be available.
974 * See the configuration section for more information.
975 *
976 * Set the priority of any task.
977 *
978 * A context switch will occur before the function returns if the priority
979 * being set is higher than the currently executing task.
980 *
981 * @param xTask Handle to the task for which the priority is being set.
982 * Passing a NULL handle results in the priority of the calling task being set.
983 *
984 * @param uxNewPriority The priority to which the task will be set.
985 *
986 * Example usage:
987 <pre>
988 void vAFunction( void )
989 {
990 TaskHandle_t xHandle;
991
992 // Create a task, storing the handle.
993 xTaskCreate( vTaskCode, "NAME", STACK_SIZE, NULL, tskIDLE_PRIORITY, &xHandle );
994
995 // ...
996
997 // Use the handle to raise the priority of the created task.
998 vTaskPrioritySet( xHandle, tskIDLE_PRIORITY + 1 );
999
1000 // ...
1001
1002 // Use a NULL handle to raise our priority to the same value.
1003 vTaskPrioritySet( NULL, tskIDLE_PRIORITY + 1 );
1004 }
1005 </pre>
1006 * \defgroup vTaskPrioritySet vTaskPrioritySet
1007 * \ingroup TaskCtrl
1008 */
1009void vTaskPrioritySet(TaskHandle_t xTask, UBaseType_t uxNewPriority) PRIVILEGED_FUNCTION;
1010
1011/**
1012 * task. h
1013 * <pre>void vTaskSuspend( TaskHandle_t xTaskToSuspend );</pre>
1014 *
1015 * INCLUDE_vTaskSuspend must be defined as 1 for this function to be available.
1016 * See the configuration section for more information.
1017 *
1018 * Suspend any task. When suspended a task will never get any microcontroller
1019 * processing time, no matter what its priority.
1020 *
1021 * Calls to vTaskSuspend are not accumulative -
1022 * i.e. calling vTaskSuspend () twice on the same task still only requires one
1023 * call to vTaskResume () to ready the suspended task.
1024 *
1025 * @param xTaskToSuspend Handle to the task being suspended. Passing a NULL
1026 * handle will cause the calling task to be suspended.
1027 *
1028 * Example usage:
1029 <pre>
1030 void vAFunction( void )
1031 {
1032 TaskHandle_t xHandle;
1033
1034 // Create a task, storing the handle.
1035 xTaskCreate( vTaskCode, "NAME", STACK_SIZE, NULL, tskIDLE_PRIORITY, &xHandle );
1036
1037 // ...
1038
1039 // Use the handle to suspend the created task.
1040 vTaskSuspend( xHandle );
1041
1042 // ...
1043
1044 // The created task will not run during this period, unless
1045 // another task calls vTaskResume( xHandle ).
1046
1047 //...
1048
1049 // Suspend ourselves.
1050 vTaskSuspend( NULL );
1051
1052 // We cannot get here unless another task calls vTaskResume
1053 // with our handle as the parameter.
1054 }
1055 </pre>
1056 * \defgroup vTaskSuspend vTaskSuspend
1057 * \ingroup TaskCtrl
1058 */
1059void vTaskSuspend(TaskHandle_t xTaskToSuspend) PRIVILEGED_FUNCTION;
1060
1061/**
1062 * task. h
1063 * <pre>void vTaskResume( TaskHandle_t xTaskToResume );</pre>
1064 *
1065 * INCLUDE_vTaskSuspend must be defined as 1 for this function to be available.
1066 * See the configuration section for more information.
1067 *
1068 * Resumes a suspended task.
1069 *
1070 * A task that has been suspended by one or more calls to vTaskSuspend ()
1071 * will be made available for running again by a single call to
1072 * vTaskResume ().
1073 *
1074 * @param xTaskToResume Handle to the task being readied.
1075 *
1076 * Example usage:
1077 <pre>
1078 void vAFunction( void )
1079 {
1080 TaskHandle_t xHandle;
1081
1082 // Create a task, storing the handle.
1083 xTaskCreate( vTaskCode, "NAME", STACK_SIZE, NULL, tskIDLE_PRIORITY, &xHandle );
1084
1085 // ...
1086
1087 // Use the handle to suspend the created task.
1088 vTaskSuspend( xHandle );
1089
1090 // ...
1091
1092 // The created task will not run during this period, unless
1093 // another task calls vTaskResume( xHandle ).
1094
1095 //...
1096
1097 // Resume the suspended task ourselves.
1098 vTaskResume( xHandle );
1099
1100 // The created task will once again get microcontroller processing
1101 // time in accordance with its priority within the system.
1102 }
1103 </pre>
1104 * \defgroup vTaskResume vTaskResume
1105 * \ingroup TaskCtrl
1106 */
1107void vTaskResume(TaskHandle_t xTaskToResume) PRIVILEGED_FUNCTION;
1108
1109/**
1110 * task. h
1111 * <pre>void xTaskResumeFromISR( TaskHandle_t xTaskToResume );</pre>
1112 *
1113 * INCLUDE_xTaskResumeFromISR must be defined as 1 for this function to be
1114 * available. See the configuration section for more information.
1115 *
1116 * An implementation of vTaskResume() that can be called from within an ISR.
1117 *
1118 * A task that has been suspended by one or more calls to vTaskSuspend ()
1119 * will be made available for running again by a single call to
1120 * xTaskResumeFromISR ().
1121 *
1122 * xTaskResumeFromISR() should not be used to synchronise a task with an
1123 * interrupt if there is a chance that the interrupt could arrive prior to the
1124 * task being suspended - as this can lead to interrupts being missed. Use of a
1125 * semaphore as a synchronisation mechanism would avoid this eventuality.
1126 *
1127 * @param xTaskToResume Handle to the task being readied.
1128 *
1129 * @return pdTRUE if resuming the task should result in a context switch,
1130 * otherwise pdFALSE. This is used by the ISR to determine if a context switch
1131 * may be required following the ISR.
1132 *
1133 * \defgroup vTaskResumeFromISR vTaskResumeFromISR
1134 * \ingroup TaskCtrl
1135 */
1136BaseType_t xTaskResumeFromISR(TaskHandle_t xTaskToResume) PRIVILEGED_FUNCTION;
1137
1138/*-----------------------------------------------------------
1139 * SCHEDULER CONTROL
1140 *----------------------------------------------------------*/
1141
1142/**
1143 * task. h
1144 * <pre>void vTaskStartScheduler( void );</pre>
1145 *
1146 * Starts the real time kernel tick processing. After calling the kernel
1147 * has control over which tasks are executed and when.
1148 *
1149 * See the demo application file main.c for an example of creating
1150 * tasks and starting the kernel.
1151 *
1152 * Example usage:
1153 <pre>
1154 void vAFunction( void )
1155 {
1156 // Create at least one task before starting the kernel.
1157 xTaskCreate( vTaskCode, "NAME", STACK_SIZE, NULL, tskIDLE_PRIORITY, NULL );
1158
1159 // Start the real time kernel with preemption.
1160 vTaskStartScheduler ();
1161
1162 // Will not get here unless a task calls vTaskEndScheduler ()
1163 }
1164 </pre>
1165 *
1166 * \defgroup vTaskStartScheduler vTaskStartScheduler
1167 * \ingroup SchedulerControl
1168 */
1169void vTaskStartScheduler(void) PRIVILEGED_FUNCTION;
1170
1171/**
1172 * task. h
1173 * <pre>void vTaskEndScheduler( void );</pre>
1174 *
1175 * NOTE: At the time of writing only the x86 real mode port, which runs on a PC
1176 * in place of DOS, implements this function.
1177 *
1178 * Stops the real time kernel tick. All created tasks will be automatically
1179 * deleted and multitasking (either preemptive or cooperative) will
1180 * stop. Execution then resumes from the point where vTaskStartScheduler ()
1181 * was called, as if vTaskStartScheduler () had just returned.
1182 *
1183 * See the demo application file main. c in the demo/PC directory for an
1184 * example that uses vTaskEndScheduler ().
1185 *
1186 * vTaskEndScheduler () requires an exit function to be defined within the
1187 * portable layer (see vPortEndScheduler () in port. c for the PC port). This
1188 * performs hardware specific operations such as stopping the kernel tick.
1189 *
1190 * vTaskEndScheduler () will cause all of the resources allocated by the
1191 * kernel to be freed - but will not free resources allocated by application
1192 * tasks.
1193 *
1194 * Example usage:
1195 <pre>
1196 void vTaskCode( void * pvParameters )
1197 {
1198 for( ;; )
1199 {
1200 // Task code goes here.
1201
1202 // At some point we want to end the real time kernel processing
1203 // so call ...
1204 vTaskEndScheduler ();
1205 }
1206 }
1207
1208 void vAFunction( void )
1209 {
1210 // Create at least one task before starting the kernel.
1211 xTaskCreate( vTaskCode, "NAME", STACK_SIZE, NULL, tskIDLE_PRIORITY, NULL );
1212
1213 // Start the real time kernel with preemption.
1214 vTaskStartScheduler ();
1215
1216 // Will only get here when the vTaskCode () task has called
1217 // vTaskEndScheduler (). When we get here we are back to single task
1218 // execution.
1219 }
1220 </pre>
1221 *
1222 * \defgroup vTaskEndScheduler vTaskEndScheduler
1223 * \ingroup SchedulerControl
1224 */
1225void vTaskEndScheduler(void) PRIVILEGED_FUNCTION;
1226
1227/**
1228 * task. h
1229 * <pre>void vTaskSuspendAll( void );</pre>
1230 *
1231 * Suspends the scheduler without disabling interrupts. Context switches will
1232 * not occur while the scheduler is suspended.
1233 *
1234 * After calling vTaskSuspendAll () the calling task will continue to execute
1235 * without risk of being swapped out until a call to xTaskResumeAll () has been
1236 * made.
1237 *
1238 * API functions that have the potential to cause a context switch (for example,
1239 * vTaskDelayUntil(), xQueueSend(), etc.) must not be called while the scheduler
1240 * is suspended.
1241 *
1242 * Example usage:
1243 <pre>
1244 void vTask1( void * pvParameters )
1245 {
1246 for( ;; )
1247 {
1248 // Task code goes here.
1249
1250 // ...
1251
1252 // At some point the task wants to perform a long operation during
1253 // which it does not want to get swapped out. It cannot use
1254 // taskENTER_CRITICAL ()/taskEXIT_CRITICAL () as the length of the
1255 // operation may cause interrupts to be missed - including the
1256 // ticks.
1257
1258 // Prevent the real time kernel swapping out the task.
1259 vTaskSuspendAll ();
1260
1261 // Perform the operation here. There is no need to use critical
1262 // sections as we have all the microcontroller processing time.
1263 // During this time interrupts will still operate and the kernel
1264 // tick count will be maintained.
1265
1266 // ...
1267
1268 // The operation is complete. Restart the kernel.
1269 xTaskResumeAll ();
1270 }
1271 }
1272 </pre>
1273 * \defgroup vTaskSuspendAll vTaskSuspendAll
1274 * \ingroup SchedulerControl
1275 */
1276void vTaskSuspendAll(void) PRIVILEGED_FUNCTION;
1277
1278/**
1279 * task. h
1280 * <pre>BaseType_t xTaskResumeAll( void );</pre>
1281 *
1282 * Resumes scheduler activity after it was suspended by a call to
1283 * vTaskSuspendAll().
1284 *
1285 * xTaskResumeAll() only resumes the scheduler. It does not unsuspend tasks
1286 * that were previously suspended by a call to vTaskSuspend().
1287 *
1288 * @return If resuming the scheduler caused a context switch then pdTRUE is
1289 * returned, otherwise pdFALSE is returned.
1290 *
1291 * Example usage:
1292 <pre>
1293 void vTask1( void * pvParameters )
1294 {
1295 for( ;; )
1296 {
1297 // Task code goes here.
1298
1299 // ...
1300
1301 // At some point the task wants to perform a long operation during
1302 // which it does not want to get swapped out. It cannot use
1303 // taskENTER_CRITICAL ()/taskEXIT_CRITICAL () as the length of the
1304 // operation may cause interrupts to be missed - including the
1305 // ticks.
1306
1307 // Prevent the real time kernel swapping out the task.
1308 vTaskSuspendAll ();
1309
1310 // Perform the operation here. There is no need to use critical
1311 // sections as we have all the microcontroller processing time.
1312 // During this time interrupts will still operate and the real
1313 // time kernel tick count will be maintained.
1314
1315 // ...
1316
1317 // The operation is complete. Restart the kernel. We want to force
1318 // a context switch - but there is no point if resuming the scheduler
1319 // caused a context switch already.
1320 if( !xTaskResumeAll () )
1321 {
1322 taskYIELD ();
1323 }
1324 }
1325 }
1326 </pre>
1327 * \defgroup xTaskResumeAll xTaskResumeAll
1328 * \ingroup SchedulerControl
1329 */
1330BaseType_t xTaskResumeAll(void) PRIVILEGED_FUNCTION;
1331
1332/*-----------------------------------------------------------
1333 * TASK UTILITIES
1334 *----------------------------------------------------------*/
1335
1336/**
1337 * task. h
1338 * <PRE>TickType_t xTaskGetTickCount( void );</PRE>
1339 *
1340 * @return The count of ticks since vTaskStartScheduler was called.
1341 *
1342 * \defgroup xTaskGetTickCount xTaskGetTickCount
1343 * \ingroup TaskUtils
1344 */
1345TickType_t xTaskGetTickCount(void) PRIVILEGED_FUNCTION;
1346
1347/**
1348 * task. h
1349 * <PRE>TickType_t xTaskGetTickCountFromISR( void );</PRE>
1350 *
1351 * @return The count of ticks since vTaskStartScheduler was called.
1352 *
1353 * This is a version of xTaskGetTickCount() that is safe to be called from an
1354 * ISR - provided that TickType_t is the natural word size of the
1355 * microcontroller being used or interrupt nesting is either not supported or
1356 * not being used.
1357 *
1358 * \defgroup xTaskGetTickCountFromISR xTaskGetTickCountFromISR
1359 * \ingroup TaskUtils
1360 */
1361TickType_t xTaskGetTickCountFromISR(void) PRIVILEGED_FUNCTION;
1362
1363/**
1364 * task. h
1365 * <PRE>uint16_t uxTaskGetNumberOfTasks( void );</PRE>
1366 *
1367 * @return The number of tasks that the real time kernel is currently managing.
1368 * This includes all ready, blocked and suspended tasks. A task that
1369 * has been deleted but not yet freed by the idle task will also be
1370 * included in the count.
1371 *
1372 * \defgroup uxTaskGetNumberOfTasks uxTaskGetNumberOfTasks
1373 * \ingroup TaskUtils
1374 */
1375UBaseType_t uxTaskGetNumberOfTasks(void) PRIVILEGED_FUNCTION;
1376
1377/**
1378 * task. h
1379 * <PRE>char *pcTaskGetName( TaskHandle_t xTaskToQuery );</PRE>
1380 *
1381 * @return The text (human readable) name of the task referenced by the handle
1382 * xTaskToQuery. A task can query its own name by either passing in its own
1383 * handle, or by setting xTaskToQuery to NULL.
1384 *
1385 * \defgroup pcTaskGetName pcTaskGetName
1386 * \ingroup TaskUtils
1387 */
1388char *pcTaskGetName(TaskHandle_t xTaskToQuery)
1389 PRIVILEGED_FUNCTION; /*lint !e971 Unqualified char types are allowed for strings and single characters only. */
1390
1391/**
1392 * task. h
1393 * <PRE>TaskHandle_t xTaskGetHandle( const char *pcNameToQuery );</PRE>
1394 *
1395 * NOTE: This function takes a relatively long time to complete and should be
1396 * used sparingly.
1397 *
1398 * @return The handle of the task that has the human readable name pcNameToQuery.
1399 * NULL is returned if no matching name is found. INCLUDE_xTaskGetHandle
1400 * must be set to 1 in FreeRTOSConfig.h for pcTaskGetHandle() to be available.
1401 *
1402 * \defgroup pcTaskGetHandle pcTaskGetHandle
1403 * \ingroup TaskUtils
1404 */
1405TaskHandle_t xTaskGetHandle(const char *pcNameToQuery)
1406 PRIVILEGED_FUNCTION; /*lint !e971 Unqualified char types are allowed for strings and single characters only. */
1407
1408/**
1409 * task.h
1410 * <PRE>UBaseType_t uxTaskGetStackHighWaterMark( TaskHandle_t xTask );</PRE>
1411 *
1412 * INCLUDE_uxTaskGetStackHighWaterMark must be set to 1 in FreeRTOSConfig.h for
1413 * this function to be available.
1414 *
1415 * Returns the high water mark of the stack associated with xTask. That is,
1416 * the minimum free stack space there has been (in words, so on a 32 bit machine
1417 * a value of 1 means 4 bytes) since the task started. The smaller the returned
1418 * number the closer the task has come to overflowing its stack.
1419 *
1420 * @param xTask Handle of the task associated with the stack to be checked.
1421 * Set xTask to NULL to check the stack of the calling task.
1422 *
1423 * @return The smallest amount of free stack space there has been (in words, so
1424 * actual spaces on the stack rather than bytes) since the task referenced by
1425 * xTask was created.
1426 */
1427UBaseType_t uxTaskGetStackHighWaterMark(TaskHandle_t xTask) PRIVILEGED_FUNCTION;
1428
1429/* When using trace macros it is sometimes necessary to include task.h before
1430FreeRTOS.h. When this is done TaskHookFunction_t will not yet have been defined,
1431so the following two prototypes will cause a compilation error. This can be
1432fixed by simply guarding against the inclusion of these two prototypes unless
1433they are explicitly required by the configUSE_APPLICATION_TASK_TAG configuration
1434constant. */
1435#ifdef configUSE_APPLICATION_TASK_TAG
1436#if configUSE_APPLICATION_TASK_TAG == 1
1437/**
1438 * task.h
1439 * <pre>void vTaskSetApplicationTaskTag( TaskHandle_t xTask, TaskHookFunction_t pxHookFunction );</pre>
1440 *
1441 * Sets pxHookFunction to be the task hook function used by the task xTask.
1442 * Passing xTask as NULL has the effect of setting the calling tasks hook
1443 * function.
1444 */
1445void vTaskSetApplicationTaskTag(TaskHandle_t xTask, TaskHookFunction_t pxHookFunction) PRIVILEGED_FUNCTION;
1446
1447/**
1448 * task.h
1449 * <pre>void xTaskGetApplicationTaskTag( TaskHandle_t xTask );</pre>
1450 *
1451 * Returns the pxHookFunction value assigned to the task xTask.
1452 */
1453TaskHookFunction_t xTaskGetApplicationTaskTag(TaskHandle_t xTask) PRIVILEGED_FUNCTION;
1454#endif /* configUSE_APPLICATION_TASK_TAG ==1 */
1455#endif /* ifdef configUSE_APPLICATION_TASK_TAG */
1456
1457#if (configNUM_THREAD_LOCAL_STORAGE_POINTERS > 0)
1458
1459/* Each task contains an array of pointers that is dimensioned by the
1460configNUM_THREAD_LOCAL_STORAGE_POINTERS setting in FreeRTOSConfig.h. The
1461kernel does not use the pointers itself, so the application writer can use
1462the pointers for any purpose they wish. The following two functions are
1463used to set and query a pointer respectively. */
1464void vTaskSetThreadLocalStoragePointer(TaskHandle_t xTaskToSet, BaseType_t xIndex, void *pvValue) PRIVILEGED_FUNCTION;
1465void *pvTaskGetThreadLocalStoragePointer(TaskHandle_t xTaskToQuery, BaseType_t xIndex) PRIVILEGED_FUNCTION;
1466
1467#endif
1468
1469/**
1470 * task.h
1471 * <pre>BaseType_t xTaskCallApplicationTaskHook( TaskHandle_t xTask, void *pvParameter );</pre>
1472 *
1473 * Calls the hook function associated with xTask. Passing xTask as NULL has
1474 * the effect of calling the Running tasks (the calling task) hook function.
1475 *
1476 * pvParameter is passed to the hook function for the task to interpret as it
1477 * wants. The return value is the value returned by the task hook function
1478 * registered by the user.
1479 */
1480BaseType_t xTaskCallApplicationTaskHook(TaskHandle_t xTask, void *pvParameter) PRIVILEGED_FUNCTION;
1481
1482/**
1483 * xTaskGetIdleTaskHandle() is only available if
1484 * INCLUDE_xTaskGetIdleTaskHandle is set to 1 in FreeRTOSConfig.h.
1485 *
1486 * Simply returns the handle of the idle task. It is not valid to call
1487 * xTaskGetIdleTaskHandle() before the scheduler has been started.
1488 */
1489TaskHandle_t xTaskGetIdleTaskHandle(void) PRIVILEGED_FUNCTION;
1490
1491/**
1492 * configUSE_TRACE_FACILITY must be defined as 1 in FreeRTOSConfig.h for
1493 * uxTaskGetSystemState() to be available.
1494 *
1495 * uxTaskGetSystemState() populates an TaskStatus_t structure for each task in
1496 * the system. TaskStatus_t structures contain, among other things, members
1497 * for the task handle, task name, task priority, task state, and total amount
1498 * of run time consumed by the task. See the TaskStatus_t structure
1499 * definition in this file for the full member list.
1500 *
1501 * NOTE: This function is intended for debugging use only as its use results in
1502 * the scheduler remaining suspended for an extended period.
1503 *
1504 * @param pxTaskStatusArray A pointer to an array of TaskStatus_t structures.
1505 * The array must contain at least one TaskStatus_t structure for each task
1506 * that is under the control of the RTOS. The number of tasks under the control
1507 * of the RTOS can be determined using the uxTaskGetNumberOfTasks() API function.
1508 *
1509 * @param uxArraySize The size of the array pointed to by the pxTaskStatusArray
1510 * parameter. The size is specified as the number of indexes in the array, or
1511 * the number of TaskStatus_t structures contained in the array, not by the
1512 * number of bytes in the array.
1513 *
1514 * @param pulTotalRunTime If configGENERATE_RUN_TIME_STATS is set to 1 in
1515 * FreeRTOSConfig.h then *pulTotalRunTime is set by uxTaskGetSystemState() to the
1516 * total run time (as defined by the run time stats clock, see
1517 * http://www.freertos.org/rtos-run-time-stats.html) since the target booted.
1518 * pulTotalRunTime can be set to NULL to omit the total run time information.
1519 *
1520 * @return The number of TaskStatus_t structures that were populated by
1521 * uxTaskGetSystemState(). This should equal the number returned by the
1522 * uxTaskGetNumberOfTasks() API function, but will be zero if the value passed
1523 * in the uxArraySize parameter was too small.
1524 *
1525 * Example usage:
1526 <pre>
1527 // This example demonstrates how a human readable table of run time stats
1528 // information is generated from raw data provided by uxTaskGetSystemState().
1529 // The human readable table is written to pcWriteBuffer
1530 void vTaskGetRunTimeStats( char *pcWriteBuffer )
1531 {
1532 TaskStatus_t *pxTaskStatusArray;
1533 volatile UBaseType_t uxArraySize, x;
1534 uint32_t ulTotalRunTime, ulStatsAsPercentage;
1535
1536 // Make sure the write buffer does not contain a string.
1537 *pcWriteBuffer = 0x00;
1538
1539 // Take a snapshot of the number of tasks in case it changes while this
1540 // function is executing.
1541 uxArraySize = uxTaskGetNumberOfTasks();
1542
1543 // Allocate a TaskStatus_t structure for each task. An array could be
1544 // allocated statically at compile time.
1545 pxTaskStatusArray = pvPortMalloc( uxArraySize * sizeof( TaskStatus_t ) );
1546
1547 if( pxTaskStatusArray != NULL )
1548 {
1549 // Generate raw status information about each task.
1550 uxArraySize = uxTaskGetSystemState( pxTaskStatusArray, uxArraySize, &ulTotalRunTime );
1551
1552 // For percentage calculations.
1553 ulTotalRunTime /= 100UL;
1554
1555 // Avoid divide by zero errors.
1556 if( ulTotalRunTime > 0 )
1557 {
1558 // For each populated position in the pxTaskStatusArray array,
1559 // format the raw data as human readable ASCII data
1560 for( x = 0; x < uxArraySize; x++ )
1561 {
1562 // What percentage of the total run time has the task used?
1563 // This will always be rounded down to the nearest integer.
1564 // ulTotalRunTimeDiv100 has already been divided by 100.
1565 ulStatsAsPercentage = pxTaskStatusArray[ x ].ulRunTimeCounter / ulTotalRunTime;
1566
1567 if( ulStatsAsPercentage > 0UL )
1568 {
1569 sprintf( pcWriteBuffer, "%s\t\t%lu\t\t%lu%%\r\n", pxTaskStatusArray[ x ].pcTaskName,
1570 pxTaskStatusArray[ x ].ulRunTimeCounter, ulStatsAsPercentage );
1571 }
1572 else
1573 {
1574 // If the percentage is zero here then the task has
1575 // consumed less than 1% of the total run time.
1576 sprintf( pcWriteBuffer, "%s\t\t%lu\t\t<1%%\r\n", pxTaskStatusArray[ x ].pcTaskName,
1577 pxTaskStatusArray[ x ].ulRunTimeCounter );
1578 }
1579
1580 pcWriteBuffer += strlen( ( char * ) pcWriteBuffer );
1581 }
1582 }
1583
1584 // The array is no longer needed, free the memory it consumes.
1585 vPortFree( pxTaskStatusArray );
1586 }
1587 }
1588 </pre>
1589 */
1590UBaseType_t uxTaskGetSystemState(TaskStatus_t *const pxTaskStatusArray, const UBaseType_t uxArraySize,
1591 uint32_t *const pulTotalRunTime) PRIVILEGED_FUNCTION;
1592
1593/**
1594 * task. h
1595 * <PRE>void vTaskList( char *pcWriteBuffer );</PRE>
1596 *
1597 * configUSE_TRACE_FACILITY and configUSE_STATS_FORMATTING_FUNCTIONS must
1598 * both be defined as 1 for this function to be available. See the
1599 * configuration section of the FreeRTOS.org website for more information.
1600 *
1601 * NOTE 1: This function will disable interrupts for its duration. It is
1602 * not intended for normal application runtime use but as a debug aid.
1603 *
1604 * Lists all the current tasks, along with their current state and stack
1605 * usage high water mark.
1606 *
1607 * Tasks are reported as blocked ('B'), ready ('R'), deleted ('D') or
1608 * suspended ('S').
1609 *
1610 * PLEASE NOTE:
1611 *
1612 * This function is provided for convenience only, and is used by many of the
1613 * demo applications. Do not consider it to be part of the scheduler.
1614 *
1615 * vTaskList() calls uxTaskGetSystemState(), then formats part of the
1616 * uxTaskGetSystemState() output into a human readable table that displays task
1617 * names, states and stack usage.
1618 *
1619 * vTaskList() has a dependency on the sprintf() C library function that might
1620 * bloat the code size, use a lot of stack, and provide different results on
1621 * different platforms. An alternative, tiny, third party, and limited
1622 * functionality implementation of sprintf() is provided in many of the
1623 * FreeRTOS/Demo sub-directories in a file called printf-stdarg.c (note
1624 * printf-stdarg.c does not provide a full snprintf() implementation!).
1625 *
1626 * It is recommended that production systems call uxTaskGetSystemState()
1627 * directly to get access to raw stats data, rather than indirectly through a
1628 * call to vTaskList().
1629 *
1630 * @param pcWriteBuffer A buffer into which the above mentioned details
1631 * will be written, in ASCII form. This buffer is assumed to be large
1632 * enough to contain the generated report. Approximately 40 bytes per
1633 * task should be sufficient.
1634 *
1635 * \defgroup vTaskList vTaskList
1636 * \ingroup TaskUtils
1637 */
1638void vTaskList(char *pcWriteBuffer)
1639 PRIVILEGED_FUNCTION; /*lint !e971 Unqualified char types are allowed for strings and single characters only. */
1640
1641/**
1642 * task. h
1643 * <PRE>void vTaskGetRunTimeStats( char *pcWriteBuffer );</PRE>
1644 *
1645 * configGENERATE_RUN_TIME_STATS and configUSE_STATS_FORMATTING_FUNCTIONS
1646 * must both be defined as 1 for this function to be available. The application
1647 * must also then provide definitions for
1648 * portCONFIGURE_TIMER_FOR_RUN_TIME_STATS() and portGET_RUN_TIME_COUNTER_VALUE()
1649 * to configure a peripheral timer/counter and return the timers current count
1650 * value respectively. The counter should be at least 10 times the frequency of
1651 * the tick count.
1652 *
1653 * NOTE 1: This function will disable interrupts for its duration. It is
1654 * not intended for normal application runtime use but as a debug aid.
1655 *
1656 * Setting configGENERATE_RUN_TIME_STATS to 1 will result in a total
1657 * accumulated execution time being stored for each task. The resolution
1658 * of the accumulated time value depends on the frequency of the timer
1659 * configured by the portCONFIGURE_TIMER_FOR_RUN_TIME_STATS() macro.
1660 * Calling vTaskGetRunTimeStats() writes the total execution time of each
1661 * task into a buffer, both as an absolute count value and as a percentage
1662 * of the total system execution time.
1663 *
1664 * NOTE 2:
1665 *
1666 * This function is provided for convenience only, and is used by many of the
1667 * demo applications. Do not consider it to be part of the scheduler.
1668 *
1669 * vTaskGetRunTimeStats() calls uxTaskGetSystemState(), then formats part of the
1670 * uxTaskGetSystemState() output into a human readable table that displays the
1671 * amount of time each task has spent in the Running state in both absolute and
1672 * percentage terms.
1673 *
1674 * vTaskGetRunTimeStats() has a dependency on the sprintf() C library function
1675 * that might bloat the code size, use a lot of stack, and provide different
1676 * results on different platforms. An alternative, tiny, third party, and
1677 * limited functionality implementation of sprintf() is provided in many of the
1678 * FreeRTOS/Demo sub-directories in a file called printf-stdarg.c (note
1679 * printf-stdarg.c does not provide a full snprintf() implementation!).
1680 *
1681 * It is recommended that production systems call uxTaskGetSystemState() directly
1682 * to get access to raw stats data, rather than indirectly through a call to
1683 * vTaskGetRunTimeStats().
1684 *
1685 * @param pcWriteBuffer A buffer into which the execution times will be
1686 * written, in ASCII form. This buffer is assumed to be large enough to
1687 * contain the generated report. Approximately 40 bytes per task should
1688 * be sufficient.
1689 *
1690 * \defgroup vTaskGetRunTimeStats vTaskGetRunTimeStats
1691 * \ingroup TaskUtils
1692 */
1693void vTaskGetRunTimeStats(char *pcWriteBuffer)
1694 PRIVILEGED_FUNCTION; /*lint !e971 Unqualified char types are allowed for strings and single characters only. */
1695
1696/**
1697 * task. h
1698 * <PRE>BaseType_t xTaskNotify( TaskHandle_t xTaskToNotify, uint32_t ulValue, eNotifyAction eAction );</PRE>
1699 *
1700 * configUSE_TASK_NOTIFICATIONS must be undefined or defined as 1 for this
1701 * function to be available.
1702 *
1703 * When configUSE_TASK_NOTIFICATIONS is set to one each task has its own private
1704 * "notification value", which is a 32-bit unsigned integer (uint32_t).
1705 *
1706 * Events can be sent to a task using an intermediary object. Examples of such
1707 * objects are queues, semaphores, mutexes and event groups. Task notifications
1708 * are a method of sending an event directly to a task without the need for such
1709 * an intermediary object.
1710 *
1711 * A notification sent to a task can optionally perform an action, such as
1712 * update, overwrite or increment the task's notification value. In that way
1713 * task notifications can be used to send data to a task, or be used as light
1714 * weight and fast binary or counting semaphores.
1715 *
1716 * A notification sent to a task will remain pending until it is cleared by the
1717 * task calling xTaskNotifyWait() or ulTaskNotifyTake(). If the task was
1718 * already in the Blocked state to wait for a notification when the notification
1719 * arrives then the task will automatically be removed from the Blocked state
1720 * (unblocked) and the notification cleared.
1721 *
1722 * A task can use xTaskNotifyWait() to [optionally] block to wait for a
1723 * notification to be pending, or ulTaskNotifyTake() to [optionally] block
1724 * to wait for its notification value to have a non-zero value. The task does
1725 * not consume any CPU time while it is in the Blocked state.
1726 *
1727 * See http://www.FreeRTOS.org/RTOS-task-notifications.html for details.
1728 *
1729 * @param xTaskToNotify The handle of the task being notified. The handle to a
1730 * task can be returned from the xTaskCreate() API function used to create the
1731 * task, and the handle of the currently running task can be obtained by calling
1732 * xTaskGetCurrentTaskHandle().
1733 *
1734 * @param ulValue Data that can be sent with the notification. How the data is
1735 * used depends on the value of the eAction parameter.
1736 *
1737 * @param eAction Specifies how the notification updates the task's notification
1738 * value, if at all. Valid values for eAction are as follows:
1739 *
1740 * eSetBits -
1741 * The task's notification value is bitwise ORed with ulValue. xTaskNofify()
1742 * always returns pdPASS in this case.
1743 *
1744 * eIncrement -
1745 * The task's notification value is incremented. ulValue is not used and
1746 * xTaskNotify() always returns pdPASS in this case.
1747 *
1748 * eSetValueWithOverwrite -
1749 * The task's notification value is set to the value of ulValue, even if the
1750 * task being notified had not yet processed the previous notification (the
1751 * task already had a notification pending). xTaskNotify() always returns
1752 * pdPASS in this case.
1753 *
1754 * eSetValueWithoutOverwrite -
1755 * If the task being notified did not already have a notification pending then
1756 * the task's notification value is set to ulValue and xTaskNotify() will
1757 * return pdPASS. If the task being notified already had a notification
1758 * pending then no action is performed and pdFAIL is returned.
1759 *
1760 * eNoAction -
1761 * The task receives a notification without its notification value being
1762 * updated. ulValue is not used and xTaskNotify() always returns pdPASS in
1763 * this case.
1764 *
1765 * pulPreviousNotificationValue -
1766 * Can be used to pass out the subject task's notification value before any
1767 * bits are modified by the notify function.
1768 *
1769 * @return Dependent on the value of eAction. See the description of the
1770 * eAction parameter.
1771 *
1772 * \defgroup xTaskNotify xTaskNotify
1773 * \ingroup TaskNotifications
1774 */
1775BaseType_t xTaskGenericNotify(TaskHandle_t xTaskToNotify, uint32_t ulValue, eNotifyAction eAction,
1776 uint32_t *pulPreviousNotificationValue) PRIVILEGED_FUNCTION;
1777#define xTaskNotify(xTaskToNotify, ulValue, eAction) xTaskGenericNotify((xTaskToNotify), (ulValue), (eAction), NULL)
1778#define xTaskNotifyAndQuery(xTaskToNotify, ulValue, eAction, pulPreviousNotifyValue) \
1779 xTaskGenericNotify((xTaskToNotify), (ulValue), (eAction), (pulPreviousNotifyValue))
1780
1781/**
1782 * task. h
1783 * <PRE>BaseType_t xTaskNotifyFromISR( TaskHandle_t xTaskToNotify, uint32_t ulValue, eNotifyAction eAction, BaseType_t *pxHigherPriorityTaskWoken );</PRE>
1784 *
1785 * configUSE_TASK_NOTIFICATIONS must be undefined or defined as 1 for this
1786 * function to be available.
1787 *
1788 * When configUSE_TASK_NOTIFICATIONS is set to one each task has its own private
1789 * "notification value", which is a 32-bit unsigned integer (uint32_t).
1790 *
1791 * A version of xTaskNotify() that can be used from an interrupt service routine
1792 * (ISR).
1793 *
1794 * Events can be sent to a task using an intermediary object. Examples of such
1795 * objects are queues, semaphores, mutexes and event groups. Task notifications
1796 * are a method of sending an event directly to a task without the need for such
1797 * an intermediary object.
1798 *
1799 * A notification sent to a task can optionally perform an action, such as
1800 * update, overwrite or increment the task's notification value. In that way
1801 * task notifications can be used to send data to a task, or be used as light
1802 * weight and fast binary or counting semaphores.
1803 *
1804 * A notification sent to a task will remain pending until it is cleared by the
1805 * task calling xTaskNotifyWait() or ulTaskNotifyTake(). If the task was
1806 * already in the Blocked state to wait for a notification when the notification
1807 * arrives then the task will automatically be removed from the Blocked state
1808 * (unblocked) and the notification cleared.
1809 *
1810 * A task can use xTaskNotifyWait() to [optionally] block to wait for a
1811 * notification to be pending, or ulTaskNotifyTake() to [optionally] block
1812 * to wait for its notification value to have a non-zero value. The task does
1813 * not consume any CPU time while it is in the Blocked state.
1814 *
1815 * See http://www.FreeRTOS.org/RTOS-task-notifications.html for details.
1816 *
1817 * @param xTaskToNotify The handle of the task being notified. The handle to a
1818 * task can be returned from the xTaskCreate() API function used to create the
1819 * task, and the handle of the currently running task can be obtained by calling
1820 * xTaskGetCurrentTaskHandle().
1821 *
1822 * @param ulValue Data that can be sent with the notification. How the data is
1823 * used depends on the value of the eAction parameter.
1824 *
1825 * @param eAction Specifies how the notification updates the task's notification
1826 * value, if at all. Valid values for eAction are as follows:
1827 *
1828 * eSetBits -
1829 * The task's notification value is bitwise ORed with ulValue. xTaskNofify()
1830 * always returns pdPASS in this case.
1831 *
1832 * eIncrement -
1833 * The task's notification value is incremented. ulValue is not used and
1834 * xTaskNotify() always returns pdPASS in this case.
1835 *
1836 * eSetValueWithOverwrite -
1837 * The task's notification value is set to the value of ulValue, even if the
1838 * task being notified had not yet processed the previous notification (the
1839 * task already had a notification pending). xTaskNotify() always returns
1840 * pdPASS in this case.
1841 *
1842 * eSetValueWithoutOverwrite -
1843 * If the task being notified did not already have a notification pending then
1844 * the task's notification value is set to ulValue and xTaskNotify() will
1845 * return pdPASS. If the task being notified already had a notification
1846 * pending then no action is performed and pdFAIL is returned.
1847 *
1848 * eNoAction -
1849 * The task receives a notification without its notification value being
1850 * updated. ulValue is not used and xTaskNotify() always returns pdPASS in
1851 * this case.
1852 *
1853 * @param pxHigherPriorityTaskWoken xTaskNotifyFromISR() will set
1854 * *pxHigherPriorityTaskWoken to pdTRUE if sending the notification caused the
1855 * task to which the notification was sent to leave the Blocked state, and the
1856 * unblocked task has a priority higher than the currently running task. If
1857 * xTaskNotifyFromISR() sets this value to pdTRUE then a context switch should
1858 * be requested before the interrupt is exited. How a context switch is
1859 * requested from an ISR is dependent on the port - see the documentation page
1860 * for the port in use.
1861 *
1862 * @return Dependent on the value of eAction. See the description of the
1863 * eAction parameter.
1864 *
1865 * \defgroup xTaskNotify xTaskNotify
1866 * \ingroup TaskNotifications
1867 */
1868BaseType_t xTaskGenericNotifyFromISR(TaskHandle_t xTaskToNotify, uint32_t ulValue, eNotifyAction eAction,
1869 uint32_t * pulPreviousNotificationValue,
1870 BaseType_t *pxHigherPriorityTaskWoken) PRIVILEGED_FUNCTION;
1871#define xTaskNotifyFromISR(xTaskToNotify, ulValue, eAction, pxHigherPriorityTaskWoken) \
1872 xTaskGenericNotifyFromISR((xTaskToNotify), (ulValue), (eAction), NULL, (pxHigherPriorityTaskWoken))
1873#define xTaskNotifyAndQueryFromISR( \
1874 xTaskToNotify, ulValue, eAction, pulPreviousNotificationValue, pxHigherPriorityTaskWoken) \
1875 xTaskGenericNotifyFromISR( \
1876 (xTaskToNotify), (ulValue), (eAction), (pulPreviousNotificationValue), (pxHigherPriorityTaskWoken))
1877
1878/**
1879 * task. h
1880 * <PRE>BaseType_t xTaskNotifyWait( uint32_t ulBitsToClearOnEntry, uint32_t ulBitsToClearOnExit, uint32_t *pulNotificationValue, TickType_t xTicksToWait );</pre>
1881 *
1882 * configUSE_TASK_NOTIFICATIONS must be undefined or defined as 1 for this
1883 * function to be available.
1884 *
1885 * When configUSE_TASK_NOTIFICATIONS is set to one each task has its own private
1886 * "notification value", which is a 32-bit unsigned integer (uint32_t).
1887 *
1888 * Events can be sent to a task using an intermediary object. Examples of such
1889 * objects are queues, semaphores, mutexes and event groups. Task notifications
1890 * are a method of sending an event directly to a task without the need for such
1891 * an intermediary object.
1892 *
1893 * A notification sent to a task can optionally perform an action, such as
1894 * update, overwrite or increment the task's notification value. In that way
1895 * task notifications can be used to send data to a task, or be used as light
1896 * weight and fast binary or counting semaphores.
1897 *
1898 * A notification sent to a task will remain pending until it is cleared by the
1899 * task calling xTaskNotifyWait() or ulTaskNotifyTake(). If the task was
1900 * already in the Blocked state to wait for a notification when the notification
1901 * arrives then the task will automatically be removed from the Blocked state
1902 * (unblocked) and the notification cleared.
1903 *
1904 * A task can use xTaskNotifyWait() to [optionally] block to wait for a
1905 * notification to be pending, or ulTaskNotifyTake() to [optionally] block
1906 * to wait for its notification value to have a non-zero value. The task does
1907 * not consume any CPU time while it is in the Blocked state.
1908 *
1909 * See http://www.FreeRTOS.org/RTOS-task-notifications.html for details.
1910 *
1911 * @param ulBitsToClearOnEntry Bits that are set in ulBitsToClearOnEntry value
1912 * will be cleared in the calling task's notification value before the task
1913 * checks to see if any notifications are pending, and optionally blocks if no
1914 * notifications are pending. Setting ulBitsToClearOnEntry to ULONG_MAX (if
1915 * limits.h is included) or 0xffffffffUL (if limits.h is not included) will have
1916 * the effect of resetting the task's notification value to 0. Setting
1917 * ulBitsToClearOnEntry to 0 will leave the task's notification value unchanged.
1918 *
1919 * @param ulBitsToClearOnExit If a notification is pending or received before
1920 * the calling task exits the xTaskNotifyWait() function then the task's
1921 * notification value (see the xTaskNotify() API function) is passed out using
1922 * the pulNotificationValue parameter. Then any bits that are set in
1923 * ulBitsToClearOnExit will be cleared in the task's notification value (note
1924 * *pulNotificationValue is set before any bits are cleared). Setting
1925 * ulBitsToClearOnExit to ULONG_MAX (if limits.h is included) or 0xffffffffUL
1926 * (if limits.h is not included) will have the effect of resetting the task's
1927 * notification value to 0 before the function exits. Setting
1928 * ulBitsToClearOnExit to 0 will leave the task's notification value unchanged
1929 * when the function exits (in which case the value passed out in
1930 * pulNotificationValue will match the task's notification value).
1931 *
1932 * @param pulNotificationValue Used to pass the task's notification value out
1933 * of the function. Note the value passed out will not be effected by the
1934 * clearing of any bits caused by ulBitsToClearOnExit being non-zero.
1935 *
1936 * @param xTicksToWait The maximum amount of time that the task should wait in
1937 * the Blocked state for a notification to be received, should a notification
1938 * not already be pending when xTaskNotifyWait() was called. The task
1939 * will not consume any processing time while it is in the Blocked state. This
1940 * is specified in kernel ticks, the macro pdMS_TO_TICSK( value_in_ms ) can be
1941 * used to convert a time specified in milliseconds to a time specified in
1942 * ticks.
1943 *
1944 * @return If a notification was received (including notifications that were
1945 * already pending when xTaskNotifyWait was called) then pdPASS is
1946 * returned. Otherwise pdFAIL is returned.
1947 *
1948 * \defgroup xTaskNotifyWait xTaskNotifyWait
1949 * \ingroup TaskNotifications
1950 */
1951BaseType_t xTaskNotifyWait(uint32_t ulBitsToClearOnEntry, uint32_t ulBitsToClearOnExit, uint32_t *pulNotificationValue,
1952 TickType_t xTicksToWait) PRIVILEGED_FUNCTION;
1953
1954/**
1955 * task. h
1956 * <PRE>BaseType_t xTaskNotifyGive( TaskHandle_t xTaskToNotify );</PRE>
1957 *
1958 * configUSE_TASK_NOTIFICATIONS must be undefined or defined as 1 for this macro
1959 * to be available.
1960 *
1961 * When configUSE_TASK_NOTIFICATIONS is set to one each task has its own private
1962 * "notification value", which is a 32-bit unsigned integer (uint32_t).
1963 *
1964 * Events can be sent to a task using an intermediary object. Examples of such
1965 * objects are queues, semaphores, mutexes and event groups. Task notifications
1966 * are a method of sending an event directly to a task without the need for such
1967 * an intermediary object.
1968 *
1969 * A notification sent to a task can optionally perform an action, such as
1970 * update, overwrite or increment the task's notification value. In that way
1971 * task notifications can be used to send data to a task, or be used as light
1972 * weight and fast binary or counting semaphores.
1973 *
1974 * xTaskNotifyGive() is a helper macro intended for use when task notifications
1975 * are used as light weight and faster binary or counting semaphore equivalents.
1976 * Actual FreeRTOS semaphores are given using the xSemaphoreGive() API function,
1977 * the equivalent action that instead uses a task notification is
1978 * xTaskNotifyGive().
1979 *
1980 * When task notifications are being used as a binary or counting semaphore
1981 * equivalent then the task being notified should wait for the notification
1982 * using the ulTaskNotificationTake() API function rather than the
1983 * xTaskNotifyWait() API function.
1984 *
1985 * See http://www.FreeRTOS.org/RTOS-task-notifications.html for more details.
1986 *
1987 * @param xTaskToNotify The handle of the task being notified. The handle to a
1988 * task can be returned from the xTaskCreate() API function used to create the
1989 * task, and the handle of the currently running task can be obtained by calling
1990 * xTaskGetCurrentTaskHandle().
1991 *
1992 * @return xTaskNotifyGive() is a macro that calls xTaskNotify() with the
1993 * eAction parameter set to eIncrement - so pdPASS is always returned.
1994 *
1995 * \defgroup xTaskNotifyGive xTaskNotifyGive
1996 * \ingroup TaskNotifications
1997 */
1998#define xTaskNotifyGive(xTaskToNotify) xTaskGenericNotify((xTaskToNotify), (0), eIncrement, NULL)
1999
2000/**
2001 * task. h
2002 * <PRE>void vTaskNotifyGiveFromISR( TaskHandle_t xTaskHandle, BaseType_t *pxHigherPriorityTaskWoken );
2003 *
2004 * configUSE_TASK_NOTIFICATIONS must be undefined or defined as 1 for this macro
2005 * to be available.
2006 *
2007 * When configUSE_TASK_NOTIFICATIONS is set to one each task has its own private
2008 * "notification value", which is a 32-bit unsigned integer (uint32_t).
2009 *
2010 * A version of xTaskNotifyGive() that can be called from an interrupt service
2011 * routine (ISR).
2012 *
2013 * Events can be sent to a task using an intermediary object. Examples of such
2014 * objects are queues, semaphores, mutexes and event groups. Task notifications
2015 * are a method of sending an event directly to a task without the need for such
2016 * an intermediary object.
2017 *
2018 * A notification sent to a task can optionally perform an action, such as
2019 * update, overwrite or increment the task's notification value. In that way
2020 * task notifications can be used to send data to a task, or be used as light
2021 * weight and fast binary or counting semaphores.
2022 *
2023 * vTaskNotifyGiveFromISR() is intended for use when task notifications are
2024 * used as light weight and faster binary or counting semaphore equivalents.
2025 * Actual FreeRTOS semaphores are given from an ISR using the
2026 * xSemaphoreGiveFromISR() API function, the equivalent action that instead uses
2027 * a task notification is vTaskNotifyGiveFromISR().
2028 *
2029 * When task notifications are being used as a binary or counting semaphore
2030 * equivalent then the task being notified should wait for the notification
2031 * using the ulTaskNotificationTake() API function rather than the
2032 * xTaskNotifyWait() API function.
2033 *
2034 * See http://www.FreeRTOS.org/RTOS-task-notifications.html for more details.
2035 *
2036 * @param xTaskToNotify The handle of the task being notified. The handle to a
2037 * task can be returned from the xTaskCreate() API function used to create the
2038 * task, and the handle of the currently running task can be obtained by calling
2039 * xTaskGetCurrentTaskHandle().
2040 *
2041 * @param pxHigherPriorityTaskWoken vTaskNotifyGiveFromISR() will set
2042 * *pxHigherPriorityTaskWoken to pdTRUE if sending the notification caused the
2043 * task to which the notification was sent to leave the Blocked state, and the
2044 * unblocked task has a priority higher than the currently running task. If
2045 * vTaskNotifyGiveFromISR() sets this value to pdTRUE then a context switch
2046 * should be requested before the interrupt is exited. How a context switch is
2047 * requested from an ISR is dependent on the port - see the documentation page
2048 * for the port in use.
2049 *
2050 * \defgroup xTaskNotifyWait xTaskNotifyWait
2051 * \ingroup TaskNotifications
2052 */
2053void vTaskNotifyGiveFromISR(TaskHandle_t xTaskToNotify, BaseType_t *pxHigherPriorityTaskWoken) PRIVILEGED_FUNCTION;
2054
2055/**
2056 * task. h
2057 * <PRE>uint32_t ulTaskNotifyTake( BaseType_t xClearCountOnExit, TickType_t xTicksToWait );</pre>
2058 *
2059 * configUSE_TASK_NOTIFICATIONS must be undefined or defined as 1 for this
2060 * function to be available.
2061 *
2062 * When configUSE_TASK_NOTIFICATIONS is set to one each task has its own private
2063 * "notification value", which is a 32-bit unsigned integer (uint32_t).
2064 *
2065 * Events can be sent to a task using an intermediary object. Examples of such
2066 * objects are queues, semaphores, mutexes and event groups. Task notifications
2067 * are a method of sending an event directly to a task without the need for such
2068 * an intermediary object.
2069 *
2070 * A notification sent to a task can optionally perform an action, such as
2071 * update, overwrite or increment the task's notification value. In that way
2072 * task notifications can be used to send data to a task, or be used as light
2073 * weight and fast binary or counting semaphores.
2074 *
2075 * ulTaskNotifyTake() is intended for use when a task notification is used as a
2076 * faster and lighter weight binary or counting semaphore alternative. Actual
2077 * FreeRTOS semaphores are taken using the xSemaphoreTake() API function, the
2078 * equivalent action that instead uses a task notification is
2079 * ulTaskNotifyTake().
2080 *
2081 * When a task is using its notification value as a binary or counting semaphore
2082 * other tasks should send notifications to it using the xTaskNotifyGive()
2083 * macro, or xTaskNotify() function with the eAction parameter set to
2084 * eIncrement.
2085 *
2086 * ulTaskNotifyTake() can either clear the task's notification value to
2087 * zero on exit, in which case the notification value acts like a binary
2088 * semaphore, or decrement the task's notification value on exit, in which case
2089 * the notification value acts like a counting semaphore.
2090 *
2091 * A task can use ulTaskNotifyTake() to [optionally] block to wait for a
2092 * the task's notification value to be non-zero. The task does not consume any
2093 * CPU time while it is in the Blocked state.
2094 *
2095 * Where as xTaskNotifyWait() will return when a notification is pending,
2096 * ulTaskNotifyTake() will return when the task's notification value is
2097 * not zero.
2098 *
2099 * See http://www.FreeRTOS.org/RTOS-task-notifications.html for details.
2100 *
2101 * @param xClearCountOnExit if xClearCountOnExit is pdFALSE then the task's
2102 * notification value is decremented when the function exits. In this way the
2103 * notification value acts like a counting semaphore. If xClearCountOnExit is
2104 * not pdFALSE then the task's notification value is cleared to zero when the
2105 * function exits. In this way the notification value acts like a binary
2106 * semaphore.
2107 *
2108 * @param xTicksToWait The maximum amount of time that the task should wait in
2109 * the Blocked state for the task's notification value to be greater than zero,
2110 * should the count not already be greater than zero when
2111 * ulTaskNotifyTake() was called. The task will not consume any processing
2112 * time while it is in the Blocked state. This is specified in kernel ticks,
2113 * the macro pdMS_TO_TICSK( value_in_ms ) can be used to convert a time
2114 * specified in milliseconds to a time specified in ticks.
2115 *
2116 * @return The task's notification count before it is either cleared to zero or
2117 * decremented (see the xClearCountOnExit parameter).
2118 *
2119 * \defgroup ulTaskNotifyTake ulTaskNotifyTake
2120 * \ingroup TaskNotifications
2121 */
2122uint32_t ulTaskNotifyTake(BaseType_t xClearCountOnExit, TickType_t xTicksToWait) PRIVILEGED_FUNCTION;
2123
2124/**
2125 * task. h
2126 * <PRE>BaseType_t xTaskNotifyStateClear( TaskHandle_t xTask );</pre>
2127 *
2128 * If the notification state of the task referenced by the handle xTask is
2129 * eNotified, then set the task's notification state to eNotWaitingNotification.
2130 * The task's notification value is not altered. Set xTask to NULL to clear the
2131 * notification state of the calling task.
2132 *
2133 * @return pdTRUE if the task's notification state was set to
2134 * eNotWaitingNotification, otherwise pdFALSE.
2135 * \defgroup xTaskNotifyStateClear xTaskNotifyStateClear
2136 * \ingroup TaskNotifications
2137 */
2138BaseType_t xTaskNotifyStateClear(TaskHandle_t xTask);
2139
2140/*-----------------------------------------------------------
2141 * SCHEDULER INTERNALS AVAILABLE FOR PORTING PURPOSES
2142 *----------------------------------------------------------*/
2143
2144/*
2145 * THIS FUNCTION MUST NOT BE USED FROM APPLICATION CODE. IT IS ONLY
2146 * INTENDED FOR USE WHEN IMPLEMENTING A PORT OF THE SCHEDULER AND IS
2147 * AN INTERFACE WHICH IS FOR THE EXCLUSIVE USE OF THE SCHEDULER.
2148 *
2149 * Called from the real time kernel tick (either preemptive or cooperative),
2150 * this increments the tick count and checks if any tasks that are blocked
2151 * for a finite period required removing from a blocked list and placing on
2152 * a ready list. If a non-zero value is returned then a context switch is
2153 * required because either:
2154 * + A task was removed from a blocked list because its timeout had expired,
2155 * or
2156 * + Time slicing is in use and there is a task of equal priority to the
2157 * currently running task.
2158 */
2159BaseType_t xTaskIncrementTick(void) PRIVILEGED_FUNCTION;
2160
2161/*
2162 * THIS FUNCTION MUST NOT BE USED FROM APPLICATION CODE. IT IS AN
2163 * INTERFACE WHICH IS FOR THE EXCLUSIVE USE OF THE SCHEDULER.
2164 *
2165 * THIS FUNCTION MUST BE CALLED WITH INTERRUPTS DISABLED.
2166 *
2167 * Removes the calling task from the ready list and places it both
2168 * on the list of tasks waiting for a particular event, and the
2169 * list of delayed tasks. The task will be removed from both lists
2170 * and replaced on the ready list should either the event occur (and
2171 * there be no higher priority tasks waiting on the same event) or
2172 * the delay period expires.
2173 *
2174 * The 'unordered' version replaces the event list item value with the
2175 * xItemValue value, and inserts the list item at the end of the list.
2176 *
2177 * The 'ordered' version uses the existing event list item value (which is the
2178 * owning tasks priority) to insert the list item into the event list is task
2179 * priority order.
2180 *
2181 * @param pxEventList The list containing tasks that are blocked waiting
2182 * for the event to occur.
2183 *
2184 * @param xItemValue The item value to use for the event list item when the
2185 * event list is not ordered by task priority.
2186 *
2187 * @param xTicksToWait The maximum amount of time that the task should wait
2188 * for the event to occur. This is specified in kernel ticks,the constant
2189 * portTICK_PERIOD_MS can be used to convert kernel ticks into a real time
2190 * period.
2191 */
2192void vTaskPlaceOnEventList(List_t *const pxEventList, const TickType_t xTicksToWait) PRIVILEGED_FUNCTION;
2193void vTaskPlaceOnUnorderedEventList(List_t *pxEventList, const TickType_t xItemValue,
2194 const TickType_t xTicksToWait) PRIVILEGED_FUNCTION;
2195
2196/*
2197 * THIS FUNCTION MUST NOT BE USED FROM APPLICATION CODE. IT IS AN
2198 * INTERFACE WHICH IS FOR THE EXCLUSIVE USE OF THE SCHEDULER.
2199 *
2200 * THIS FUNCTION MUST BE CALLED WITH INTERRUPTS DISABLED.
2201 *
2202 * This function performs nearly the same function as vTaskPlaceOnEventList().
2203 * The difference being that this function does not permit tasks to block
2204 * indefinitely, whereas vTaskPlaceOnEventList() does.
2205 *
2206 */
2207void vTaskPlaceOnEventListRestricted(List_t *const pxEventList, TickType_t xTicksToWait,
2208 const BaseType_t xWaitIndefinitely) PRIVILEGED_FUNCTION;
2209
2210/*
2211 * THIS FUNCTION MUST NOT BE USED FROM APPLICATION CODE. IT IS AN
2212 * INTERFACE WHICH IS FOR THE EXCLUSIVE USE OF THE SCHEDULER.
2213 *
2214 * THIS FUNCTION MUST BE CALLED WITH INTERRUPTS DISABLED.
2215 *
2216 * Removes a task from both the specified event list and the list of blocked
2217 * tasks, and places it on a ready queue.
2218 *
2219 * xTaskRemoveFromEventList()/vTaskRemoveFromUnorderedEventList() will be called
2220 * if either an event occurs to unblock a task, or the block timeout period
2221 * expires.
2222 *
2223 * xTaskRemoveFromEventList() is used when the event list is in task priority
2224 * order. It removes the list item from the head of the event list as that will
2225 * have the highest priority owning task of all the tasks on the event list.
2226 * vTaskRemoveFromUnorderedEventList() is used when the event list is not
2227 * ordered and the event list items hold something other than the owning tasks
2228 * priority. In this case the event list item value is updated to the value
2229 * passed in the xItemValue parameter.
2230 *
2231 * @return pdTRUE if the task being removed has a higher priority than the task
2232 * making the call, otherwise pdFALSE.
2233 */
2234BaseType_t xTaskRemoveFromEventList(const List_t *const pxEventList) PRIVILEGED_FUNCTION;
2235void vTaskRemoveFromUnorderedEventList(ListItem_t *pxEventListItem, const TickType_t xItemValue) PRIVILEGED_FUNCTION;
2236
2237/*
2238 * THIS FUNCTION MUST NOT BE USED FROM APPLICATION CODE. IT IS ONLY
2239 * INTENDED FOR USE WHEN IMPLEMENTING A PORT OF THE SCHEDULER AND IS
2240 * AN INTERFACE WHICH IS FOR THE EXCLUSIVE USE OF THE SCHEDULER.
2241 *
2242 * Sets the pointer to the current TCB to the TCB of the highest priority task
2243 * that is ready to run.
2244 */
2245void vTaskSwitchContext(void) PRIVILEGED_FUNCTION;
2246
2247/*
2248 * THESE FUNCTIONS MUST NOT BE USED FROM APPLICATION CODE. THEY ARE USED BY
2249 * THE EVENT BITS MODULE.
2250 */
2251TickType_t uxTaskResetEventItemValue(void) PRIVILEGED_FUNCTION;
2252
2253/*
2254 * Return the handle of the calling task.
2255 */
2256TaskHandle_t xTaskGetCurrentTaskHandle(void) PRIVILEGED_FUNCTION;
2257
2258/*
2259 * Capture the current time status for future reference.
2260 */
2261void vTaskSetTimeOutState(TimeOut_t *const pxTimeOut) PRIVILEGED_FUNCTION;
2262
2263/*
2264 * Compare the time status now with that previously captured to see if the
2265 * timeout has expired.
2266 */
2267BaseType_t xTaskCheckForTimeOut(TimeOut_t *const pxTimeOut, TickType_t *const pxTicksToWait) PRIVILEGED_FUNCTION;
2268
2269/*
2270 * Shortcut used by the queue implementation to prevent unnecessary call to
2271 * taskYIELD();
2272 */
2273void vTaskMissedYield(void) PRIVILEGED_FUNCTION;
2274
2275/*
2276 * Returns the scheduler state as taskSCHEDULER_RUNNING,
2277 * taskSCHEDULER_NOT_STARTED or taskSCHEDULER_SUSPENDED.
2278 */
2279BaseType_t xTaskGetSchedulerState(void) PRIVILEGED_FUNCTION;
2280
2281/*
2282 * Raises the priority of the mutex holder to that of the calling task should
2283 * the mutex holder have a priority less than the calling task.
2284 */
2285BaseType_t xTaskPriorityInherit(TaskHandle_t const pxMutexHolder) PRIVILEGED_FUNCTION;
2286
2287/*
2288 * Set the priority of a task back to its proper priority in the case that it
2289 * inherited a higher priority while it was holding a semaphore.
2290 */
2291BaseType_t xTaskPriorityDisinherit(TaskHandle_t const pxMutexHolder) PRIVILEGED_FUNCTION;
2292
2293/*
2294 * If a higher priority task attempting to obtain a mutex caused a lower
2295 * priority task to inherit the higher priority task's priority - but the higher
2296 * priority task then timed out without obtaining the mutex, then the lower
2297 * priority task will disinherit the priority again - but only down as far as
2298 * the highest priority task that is still waiting for the mutex (if there were
2299 * more than one task waiting for the mutex).
2300 */
2301void vTaskPriorityDisinheritAfterTimeout(TaskHandle_t const pxMutexHolder,
2302 UBaseType_t uxHighestPriorityWaitingTask) PRIVILEGED_FUNCTION;
2303
2304/*
2305 * Get the uxTCBNumber assigned to the task referenced by the xTask parameter.
2306 */
2307UBaseType_t uxTaskGetTaskNumber(TaskHandle_t xTask) PRIVILEGED_FUNCTION;
2308
2309/*
2310 * Set the uxTaskNumber of the task referenced by the xTask parameter to
2311 * uxHandle.
2312 */
2313void vTaskSetTaskNumber(TaskHandle_t xTask, const UBaseType_t uxHandle) PRIVILEGED_FUNCTION;
2314
2315/*
2316 * Only available when configUSE_TICKLESS_IDLE is set to 1.
2317 * If tickless mode is being used, or a low power mode is implemented, then
2318 * the tick interrupt will not execute during idle periods. When this is the
2319 * case, the tick count value maintained by the scheduler needs to be kept up
2320 * to date with the actual execution time by being skipped forward by a time
2321 * equal to the idle period.
2322 */
2323void vTaskStepTick(const TickType_t xTicksToJump) PRIVILEGED_FUNCTION;
2324
2325/*
2326 * Only avilable when configUSE_TICKLESS_IDLE is set to 1.
2327 * Provided for use within portSUPPRESS_TICKS_AND_SLEEP() to allow the port
2328 * specific sleep function to determine if it is ok to proceed with the sleep,
2329 * and if it is ok to proceed, if it is ok to sleep indefinitely.
2330 *
2331 * This function is necessary because portSUPPRESS_TICKS_AND_SLEEP() is only
2332 * called with the scheduler suspended, not from within a critical section. It
2333 * is therefore possible for an interrupt to request a context switch between
2334 * portSUPPRESS_TICKS_AND_SLEEP() and the low power mode actually being
2335 * entered. eTaskConfirmSleepModeStatus() should be called from a short
2336 * critical section between the timer being stopped and the sleep mode being
2337 * entered to ensure it is ok to proceed into the sleep mode.
2338 */
2339eSleepModeStatus eTaskConfirmSleepModeStatus(void) PRIVILEGED_FUNCTION;
2340
2341/*
2342 * For internal use only. Increment the mutex held count when a mutex is
2343 * taken and return the handle of the task that has taken the mutex.
2344 */
2345void *pvTaskIncrementMutexHeldCount(void) PRIVILEGED_FUNCTION;
2346
2347/*
2348 * For internal use only. Same as vTaskSetTimeOutState(), but without a critial
2349 * section.
2350 */
2351void vTaskInternalSetTimeOutState(TimeOut_t *const pxTimeOut) PRIVILEGED_FUNCTION;
2352
2353#ifdef __cplusplus
2354}
2355#endif
2356#endif /* INC_TASK_H */
Definition list.h:145
Definition list.h:174
Definition task.h:101
Definition FreeRTOS.h:982
Definition task.h:110
Definition task.h:125
Definition task.h:93