]> begriffs open source - freertos/blob - examples/sample_configuration/FreeRTOSConfig.h
Update system call entry mechanism (#898)
[freertos] / examples / sample_configuration / FreeRTOSConfig.h
1 /*
2  * FreeRTOS Kernel <DEVELOPMENT BRANCH>
3  * Copyright (C) 2021 Amazon.com, Inc. or its affiliates.  All Rights Reserved.
4  *
5  * SPDX-License-Identifier: MIT
6  *
7  * Permission is hereby granted, free of charge, to any person obtaining a copy of
8  * this software and associated documentation files (the "Software"), to deal in
9  * the Software without restriction, including without limitation the rights to
10  * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
11  * the Software, and to permit persons to whom the Software is furnished to do so,
12  * subject to the following conditions:
13  *
14  * The above copyright notice and this permission notice shall be included in all
15  * copies or substantial portions of the Software.
16  *
17  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
19  * FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
20  * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
21  * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
22  * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
23  *
24  * https://www.FreeRTOS.org
25  * https://github.com/FreeRTOS
26  *
27  */
28
29 /*******************************************************************************
30  * This file provides an example FreeRTOSConfig.h header file, inclusive of an
31  * abbreviated explanation of each configuration item.  Online and reference
32  * documentation provides more information.
33  * https://www.freertos.org/a00110.html
34  *
35  * Constant values enclosed in square brackets ('[' and ']') must be completed
36  * before this file will build.
37  *
38  * Use the FreeRTOSConfig.h supplied with the RTOS port in use rather than this
39  * generic file, if one is available.
40  ******************************************************************************/
41
42 #ifndef __FREERTOS_CONFIG_H__
43 #define __FREERTOS_CONFIG_H__
44
45 /******************************************************************************/
46 /* Hardware description related definitions. **********************************/
47 /******************************************************************************/
48
49 /* In most cases, configCPU_CLOCK_HZ must be set to the frequency of the clock
50  * that drives the peripheral used to generate the kernels periodic tick interrupt.
51  * The default value is set to 20MHz and matches the QEMU demo settings.  Your
52  * application will certainly need a different value so set this correctly.
53  * This is very often, but not always, equal to the main system clock frequency. */
54 #define configCPU_CLOCK_HZ    ( ( unsigned long ) 20000000 )
55
56 /* configSYSTICK_CLOCK_HZ is an optional parameter for ARM Cortex-M ports only.
57  *
58  * By default ARM Cortex-M ports generate the RTOS tick interrupt from the
59  * Cortex-M SysTick timer. Most Cortex-M MCUs run the SysTick timer at the same
60  * frequency as the MCU itself - when that is the case configSYSTICK_CLOCK_HZ is
61  * not needed and should be left undefined. If the SysTick timer is clocked at a
62  * different frequency to the MCU core then set configCPU_CLOCK_HZ to the MCU clock
63  * frequency, as normal, and configSYSTICK_CLOCK_HZ to the SysTick clock
64  * frequency.  Not used if left undefined.
65  * The default value is undefined (commented out).  If you need this value bring it
66  * back and set it to a suitable value */
67
68 /*
69  #define configSYSTICK_CLOCK_HZ                  [Platform specific]
70  */
71
72 /******************************************************************************/
73 /* Scheduling behaviour related definitions. **********************************/
74 /******************************************************************************/
75
76 /* configTICK_RATE_HZ sets frequency of the tick interrupt in Hz, normally
77  * calculated from the configCPU_CLOCK_HZ value. */
78 #define configTICK_RATE_HZ                         100
79
80 /* Set configUSE_PREEMPTION to 1 to use pre-emptive scheduling.  Set
81  * configUSE_PREEMPTION to 0 to use co-operative scheduling.
82  * See https://www.freertos.org/single-core-amp-smp-rtos-scheduling.html */
83 #define configUSE_PREEMPTION                       1
84
85 /* Set configUSE_TIME_SLICING to 1 to have the scheduler switch between Ready
86  * state tasks of equal priority on every tick interrupt.  Set
87  * configUSE_TIME_SLICING to 0 to prevent the scheduler switching between Ready
88  * state tasks just because there was a tick interrupt.  See
89  * https://freertos.org/single-core-amp-smp-rtos-scheduling.html */
90 #define configUSE_TIME_SLICING                     0
91
92 /* Set configUSE_PORT_OPTIMISED_TASK_SELECTION to 1 to select the next task to
93  * run using an algorithm optimised to the instruction set of the target hardware -
94  * normally using a count leading zeros assembly instruction.  Set to 0 to select
95  * the next task to run using a generic C algorithm that works for all FreeRTOS
96  * ports.  Not all FreeRTOS ports have this option.  Defaults to 0 if left
97  * undefined. */
98 #define configUSE_PORT_OPTIMISED_TASK_SELECTION    0
99
100 /* Set configUSE_TICKLESS_IDLE to 1 to use the low power tickless mode.  Set to
101  * 0 to keep the tick interrupt running at all times.  Not all FreeRTOS ports
102  * support tickless mode. See https://www.freertos.org/low-power-tickless-rtos.html
103  * Defaults to 0 if left undefined. */
104 #define configUSE_TICKLESS_IDLE                    0
105
106 /* configMAX_PRIORITIES Sets the number of available task priorities.  Tasks can
107  * be assigned priorities of 0 to (configMAX_PRIORITIES - 1).  Zero is the lowest
108  * priority. */
109 #define configMAX_PRIORITIES                       5
110
111 /* configMINIMAL_STACK_SIZE defines the size of the stack used by the Idle task
112  * (in words, not in bytes!).  The kernel does not use this constant for any other
113  * purpose.  Demo applications use the constant to make the demos somewhat portable
114  * across hardware architectures. */
115 #define configMINIMAL_STACK_SIZE                   128
116
117 /* configMAX_TASK_NAME_LEN sets the maximum length (in characters) of a task's
118  * human readable name.  Includes the NULL terminator. */
119 #define configMAX_TASK_NAME_LEN                    16
120
121 /* Time is measured in 'ticks' - which is the number of times the tick interrupt
122  * has executed since the RTOS kernel was started.
123  * The tick count is held in a variable of type TickType_t.
124  *
125  * configTICK_TYPE_WIDTH_IN_BITS controls the type (and therefore bit-width) of TickType_t:
126  *
127  * Defining configTICK_TYPE_WIDTH_IN_BITS as TICK_TYPE_WIDTH_16_BITS causes
128  * TickType_t to be defined (typedef'ed) as an unsigned 16-bit type.
129  *
130  * Defining configTICK_TYPE_WIDTH_IN_BITS as TICK_TYPE_WIDTH_32_BITS causes
131  * TickType_t to be defined (typedef'ed) as an unsigned 32-bit type.
132  *
133  * Defining configTICK_TYPE_WIDTH_IN_BITS as TICK_TYPE_WIDTH_64_BITS causes
134  * TickType_t to be defined (typedef'ed) as an unsigned 64-bit type. */
135 #define configTICK_TYPE_WIDTH_IN_BITS              TICK_TYPE_WIDTH_64_BITS
136
137 /* Set configIDLE_SHOULD_YIELD to 1 to have the Idle task yield to an
138  * application task if there is an Idle priority (priority 0) application task that
139  * can run.  Set to 0 to have the Idle task use all of its timeslice.  Default to 1
140  * if left undefined. */
141 #define configIDLE_SHOULD_YIELD                    1
142
143 /* Each task has an array of task notifications.
144  * configTASK_NOTIFICATION_ARRAY_ENTRIES sets the number of indexes in the array.
145  * See https://www.freertos.org/RTOS-task-notifications.html  Defaults to 1 if
146  * left undefined. */
147 #define configTASK_NOTIFICATION_ARRAY_ENTRIES      1
148
149 /* configQUEUE_REGISTRY_SIZE sets the maximum number of queues and semaphores
150  * that can be referenced from the queue registry.  Only required when using a
151  * kernel aware debugger.  Defaults to 0 if left undefined. */
152 #define configQUEUE_REGISTRY_SIZE                  0
153
154 /* Set configENABLE_BACKWARD_COMPATIBILITY to 1 to map function names and
155  * datatypes from old version of FreeRTOS to their latest equivalent.  Defaults to
156  * 1 if left undefined. */
157 #define configENABLE_BACKWARD_COMPATIBILITY        0
158
159 /* Each task has its own array of pointers that can be used as thread local
160  * storage.  configNUM_THREAD_LOCAL_STORAGE_POINTERS set the number of indexes in
161  * the array.  See https://www.freertos.org/thread-local-storage-pointers.html
162  * Defaults to 0 if left undefined. */
163 #define configNUM_THREAD_LOCAL_STORAGE_POINTERS    0
164
165 /* Sets the type used by the parameter to xTaskCreate() that specifies the stack
166  * size of the task being created.  The same type is used to return information
167  * about stack usage in various other API calls.  Defaults to size_t if left
168  * undefined. */
169 #define configSTACK_DEPTH_TYPE                     size_t
170
171 /* configMESSAGE_BUFFER_LENGTH_TYPE sets the type used to store the length of
172  *  each message written to a FreeRTOS message buffer (the length is also written to
173  *  the message buffer.  Defaults to size_t if left undefined - but that may waste
174  *  space if messages never go above a length that could be held in a uint8_t. */
175 #define configMESSAGE_BUFFER_LENGTH_TYPE           size_t
176
177 /* Set configUSE_NEWLIB_REENTRANT to 1 to have a newlib reent structure
178  * allocated for each task.  Set to 0 to not support newlib reent structures.
179  * Default to 0 if left undefined.
180  *
181  * Note Newlib support has been included by popular demand, but is not used or
182  * tested by the FreeRTOS maintainers themselves. FreeRTOS is not responsible for
183  * resulting newlib operation. User must be familiar with newlib and must provide
184  * system-wide implementations of the necessary stubs. Note that (at the time of
185  * writing) the current newlib design implements a system-wide malloc() that must
186  * be provided with locks. */
187 #define configUSE_NEWLIB_REENTRANT                 0
188
189 /******************************************************************************/
190 /* Software timer related definitions. ****************************************/
191 /******************************************************************************/
192
193 /* Set configUSE_TIMERS to 1 to include software timer functionality in the
194  * build.  Set to 0 to exclude software timer functionality from the build.  The
195  * FreeRTOS/source/timers.c source file must be included in the build if
196  * configUSE_TIMERS is set to 1.  Default to 0 if left undefined.  See
197  * https://www.freertos.org/RTOS-software-timer.html */
198 #define configUSE_TIMERS                1
199
200 /* configTIMER_TASK_PRIORITY sets the priority used by the timer task.  Only
201  * used if configUSE_TIMERS is set to 1.  The timer task is a standard FreeRTOS
202  * task, so its priority is set like any other task.  See
203  * https://www.freertos.org/RTOS-software-timer-service-daemon-task.html  Only used
204  * if configUSE_TIMERS is set to 1. */
205 #define configTIMER_TASK_PRIORITY       ( configMAX_PRIORITIES - 1 )
206
207 /* configTIMER_TASK_STACK_DEPTH sets the size of the stack allocated to the
208  * timer task (in words, not in bytes!).  The timer task is a standard FreeRTOS
209  * task.  See https://www.freertos.org/RTOS-software-timer-service-daemon-task.html
210  * Only used if configUSE_TIMERS is set to 1. */
211 #define configTIMER_TASK_STACK_DEPTH    configMINIMAL_STACK_SIZE
212
213 /* configTIMER_QUEUE_LENGTH sets the length of the queue (the number of discrete
214  * items the queue can hold) used to send commands to the timer task.  See
215  * https://www.freertos.org/RTOS-software-timer-service-daemon-task.html  Only used
216  * if configUSE_TIMERS is set to 1. */
217 #define configTIMER_QUEUE_LENGTH        10
218
219 /******************************************************************************/
220 /* Memory allocation related definitions. *************************************/
221 /******************************************************************************/
222
223 /* Set configSUPPORT_STATIC_ALLOCATION to 1 to include FreeRTOS API functions
224  * that create FreeRTOS objects (tasks, queues, etc.) using statically allocated
225  * memory in the build.  Set to 0 to exclude the ability to create statically
226  * allocated objects from the build.  Defaults to 0 if left undefined.  See
227  * https://www.freertos.org/Static_Vs_Dynamic_Memory_Allocation.html */
228 #define configSUPPORT_STATIC_ALLOCATION              1
229
230 /* Set configSUPPORT_DYNAMIC_ALLOCATION to 1 to include FreeRTOS API functions
231  * that create FreeRTOS objects (tasks, queues, etc.) using dynamically allocated
232  * memory in the build.  Set to 0 to exclude the ability to create dynamically
233  * allocated objects from the build.  Defaults to 1 if left undefined.  See
234  * https://www.freertos.org/Static_Vs_Dynamic_Memory_Allocation.html */
235 #define configSUPPORT_DYNAMIC_ALLOCATION             1
236
237 /* Sets the total size of the FreeRTOS heap, in bytes, when heap_1.c, heap_2.c
238  * or heap_4.c are included in the build.  This value is defaulted to 4096 bytes but
239  * it must be tailored to each application.  Note the heap will appear in the .bss
240  * section.  See https://www.freertos.org/a00111.html */
241 #define configTOTAL_HEAP_SIZE                        4096
242
243 /* Set configAPPLICATION_ALLOCATED_HEAP to 1 to have the application allocate
244  * the array used as the FreeRTOS heap.  Set to 0 to have the linker allocate the
245  * array used as the FreeRTOS heap.  Defaults to 0 if left undefined. */
246 #define configAPPLICATION_ALLOCATED_HEAP             0
247
248 /* Set configSTACK_ALLOCATION_FROM_SEPARATE_HEAP to 1 to have task stacks
249  * allocated from somewhere other than the FreeRTOS heap.  This is useful if you
250  * want to ensure stacks are held in fast memory.  Set to 0 to have task stacks
251  * come from the standard FreeRTOS heap.  The application writer must provide
252  * implementations for pvPortMallocStack() and vPortFreeStack() if set to 1.
253  * Defaults to 0 if left undefined. */
254 #define configSTACK_ALLOCATION_FROM_SEPARATE_HEAP    0
255
256 /******************************************************************************/
257 /* Interrupt nesting behaviour configuration. *********************************/
258 /******************************************************************************/
259
260 /* configKERNEL_INTERRUPT_PRIORITY sets the priority of the tick and context
261  * switch performing interrupts.  The default value is set to the highest interrupt
262  * priority (0).  Not supported by all FreeRTOS ports.  See
263  * https://www.freertos.org/RTOS-Cortex-M3-M4.html for information specific to ARM
264  * Cortex-M devices. */
265 #define configKERNEL_INTERRUPT_PRIORITY          0
266
267 /* configMAX_SYSCALL_INTERRUPT_PRIORITY sets the interrupt priority above which
268  * FreeRTOS API calls must not be made.  Interrupts above this priority are never
269  * disabled, so never delayed by RTOS activity.  The default value is set to the
270  * highest interrupt priority (0).  Not supported by all FreeRTOS ports.
271  * See https://www.freertos.org/RTOS-Cortex-M3-M4.html for information specific to
272  * ARM Cortex-M devices. */
273 #define configMAX_SYSCALL_INTERRUPT_PRIORITY     0
274
275 /* Another name for configMAX_SYSCALL_INTERRUPT_PRIORITY - the name used depends
276  * on the FreeRTOS port. */
277 #define configMAX_API_CALL_INTERRUPT_PRIORITY    0
278
279 /******************************************************************************/
280 /* Hook and callback function related definitions. ****************************/
281 /******************************************************************************/
282
283 /* Set the following configUSE_* constants to 1 to include the named hook
284  * functionality in the build.  Set to 0 to exclude the hook functionality from the
285  * build.  The application writer is responsible for providing the hook function
286  * for any set to 1.  See https://www.freertos.org/a00016.html */
287 #define configUSE_IDLE_HOOK                   0
288 #define configUSE_TICK_HOOK                   0
289 #define configUSE_MALLOC_FAILED_HOOK          0
290 #define configUSE_DAEMON_TASK_STARTUP_HOOK    0
291
292 /* Set configCHECK_FOR_STACK_OVERFLOW to 1 or 2 for FreeRTOS to check for a
293  * stack overflow at the time of a context switch.  Set to 0 to not look for a
294  * stack overflow.  If configCHECK_FOR_STACK_OVERFLOW is 1 then the check only
295  * looks for the stack pointer being out of bounds when a task's context is saved
296  * to its stack - this is fast but somewhat ineffective.  If
297  * configCHECK_FOR_STACK_OVERFLOW is 2 then the check looks for a pattern written
298  * to the end of a task's stack having been overwritten.  This is slower, but will
299  * catch most (but not all) stack overflows.  The application writer must provide
300  * the stack overflow callback when configCHECK_FOR_STACK_OVERFLOW is set to 1.
301  * See https://www.freertos.org/Stacks-and-stack-overflow-checking.html  Defaults
302  * to 0 if left undefined. */
303 #define configCHECK_FOR_STACK_OVERFLOW        2
304
305 /******************************************************************************/
306 /* Run time and task stats gathering related definitions. *********************/
307 /******************************************************************************/
308
309 /* Set configGENERATE_RUN_TIME_STATS to 1 to have FreeRTOS collect data on the
310 * processing time used by each task.  Set to 0 to not collect the data.  The
311 * application writer needs to provide a clock source if set to 1.  Defaults to 0
312 * if left undefined.  See https://www.freertos.org/rtos-run-time-stats.html */
313 #define configGENERATE_RUN_TIME_STATS           0
314
315 /* Set configUSE_TRACE_FACILITY to include additional task structure members
316  * are used by trace and visualisation functions and tools.  Set to 0 to exclude
317  * the additional information from the structures.  Defaults to 0 if left
318  * undefined. */
319 #define configUSE_TRACE_FACILITY                0
320
321 /* Set to 1 to include the vTaskList() and vTaskGetRunTimeStats() functions in
322  * the build.  Set to 0 to exclude these functions from the build.  These two
323  * functions introduce a dependency on string formatting functions that would
324  * otherwise not exist - hence they are kept separate.  Defaults to 0 if left
325  * undefined. */
326 #define configUSE_STATS_FORMATTING_FUNCTIONS    0
327
328 /******************************************************************************/
329 /* Debugging assistance. ******************************************************/
330 /******************************************************************************/
331
332 /* configASSERT() has the same semantics as the standard C assert().  It can
333  * either be defined to take an action when the assertion fails, or not defined
334  * at all (i.e. comment out or delete the definitions) to completely remove
335  * assertions.  configASSERT() can be defined to anything you want, for example
336  * you can call a function if an assert fails that passes the filename and line
337  * number of the failing assert (for example, "vAssertCalled( __FILE__, __LINE__ )"
338  * or it can simple disable interrupts and sit in a loop to halt all execution
339  * on the failing line for viewing in a debugger. */
340 #define configASSERT( x )         \
341     if( ( x ) == 0 )              \
342     {                             \
343         taskDISABLE_INTERRUPTS(); \
344         for( ; ; )                \
345         ;                         \
346     }
347
348 /******************************************************************************/
349 /* Cortex-M MPU specific definitions. *****************************************/
350 /******************************************************************************/
351
352 /* If configINCLUDE_APPLICATION_DEFINED_PRIVILEGED_FUNCTIONS is set to 1 then
353  * the application writer can provide functions that execute in privileged mode.
354  * See: https://www.freertos.org/a00110.html#configINCLUDE_APPLICATION_DEFINED_PRIVILEGED_FUNCTIONS
355  * Defaults to 0 if left undefined.  Only used by the FreeRTOS Cortex-M MPU ports,
356  * not the standard ARMv7-M Cortex-M port. */
357 #define configINCLUDE_APPLICATION_DEFINED_PRIVILEGED_FUNCTIONS    0
358
359 /* Set configTOTAL_MPU_REGIONS to the number of MPU regions implemented on your
360  * target hardware.  Normally 8 or 16.  Only used by the FreeRTOS Cortex-M MPU
361  * ports, not the standard ARMv7-M Cortex-M port.  Defaults to 8 if left
362  * undefined. */
363 #define configTOTAL_MPU_REGIONS                                   8
364
365 /* configTEX_S_C_B_FLASH allows application writers to override the default
366  * values for the for TEX, Shareable (S), Cacheable (C) and Bufferable (B) bits for
367  * the MPU region covering Flash.  Defaults to 0x07UL (which means TEX=000, S=1,
368  * C=1, B=1) if left undefined.  Only used by the FreeRTOS Cortex-M MPU ports, not
369  * the standard ARMv7-M Cortex-M port. */
370 #define configTEX_S_C_B_FLASH                                     0x07UL
371
372 /* configTEX_S_C_B_SRAM allows application writers to override the default
373  * values for the for TEX, Shareable (S), Cacheable (C) and Bufferable (B) bits for
374  * the MPU region covering RAM. Defaults to 0x07UL (which means TEX=000, S=1, C=1,
375  * B=1) if left undefined.  Only used by the FreeRTOS Cortex-M MPU ports, not
376  * the standard ARMv7-M Cortex-M port. */
377 #define configTEX_S_C_B_SRAM                                      0x07UL
378
379 /* Set configENFORCE_SYSTEM_CALLS_FROM_KERNEL_ONLY to 0 to prevent any privilege
380  * escalations originating from outside of the kernel code itself.  Set to 1 to
381  * allow application tasks to raise privilege.  Defaults to 1 if left undefined.
382  * Only used by the FreeRTOS Cortex-M MPU ports, not the standard ARMv7-M Cortex-M
383  * port.*/
384 #define configENFORCE_SYSTEM_CALLS_FROM_KERNEL_ONLY               1
385
386 /* Set configALLOW_UNPRIVILEGED_CRITICAL_SECTIONS to 1 to allow unprivileged
387  * tasks enter critical sections (effectively mask interrupts).  Set to 0 to
388  * prevent unprivileged tasks entering critical sections.  Defaults to 1 if left
389  * undefined.  Only used by the FreeRTOS Cortex-M MPU ports, not the standard
390  * ARMv7-M Cortex-M port.*/
391 #define configALLOW_UNPRIVILEGED_CRITICAL_SECTIONS                0
392
393 /******************************************************************************/
394 /* ARMv8-M secure side port related definitions. ******************************/
395 /******************************************************************************/
396
397 /* secureconfigMAX_SECURE_CONTEXTS define the maximum number of tasks that can
398  *  call into the secure side of an ARMv8-M chip.  Not used by any other ports. */
399 #define secureconfigMAX_SECURE_CONTEXTS        5
400
401 /* Defines the kernel provided implementation of
402  * vApplicationGetIdleTaskMemory() and vApplicationGetTimerTaskMemory()
403  * to provide the memory that is used by the Idle task and Timer task respectively.
404  * The application can provide it's own implementation of
405  * vApplicationGetIdleTaskMemory() and vApplicationGetTimerTaskMemory() by
406  * setting configKERNEL_PROVIDED_STATIC_MEMORY to 0 or leaving it undefined. */
407 #define configKERNEL_PROVIDED_STATIC_MEMORY    1
408
409 /******************************************************************************/
410 /* Definitions that include or exclude functionality. *************************/
411 /******************************************************************************/
412
413 /* Set the following configUSE_* constants to 1 to include the named feature in
414  * the build, or 0 to exclude the named feature from the build. */
415 #define configUSE_TASK_NOTIFICATIONS           1
416 #define configUSE_MUTEXES                      1
417 #define configUSE_RECURSIVE_MUTEXES            1
418 #define configUSE_COUNTING_SEMAPHORES          1
419 #define configUSE_QUEUE_SETS                   0
420 #define configUSE_APPLICATION_TASK_TAG         0
421
422 /* Set the following INCLUDE_* constants to 1 to incldue the named API function,
423  * or 0 to exclude the named API function.  Most linkers will remove unused
424  * functions even when the constant is 1. */
425 #define INCLUDE_vTaskPrioritySet               1
426 #define INCLUDE_uxTaskPriorityGet              1
427 #define INCLUDE_vTaskDelete                    1
428 #define INCLUDE_vTaskSuspend                   1
429 #define INCLUDE_xResumeFromISR                 1
430 #define INCLUDE_vTaskDelayUntil                1
431 #define INCLUDE_vTaskDelay                     1
432 #define INCLUDE_xTaskGetSchedulerState         1
433 #define INCLUDE_xTaskGetCurrentTaskHandle      1
434 #define INCLUDE_uxTaskGetStackHighWaterMark    0
435 #define INCLUDE_xTaskGetIdleTaskHandle         0
436 #define INCLUDE_eTaskGetState                  0
437 #define INCLUDE_xEventGroupSetBitFromISR       1
438 #define INCLUDE_xTimerPendFunctionCall         0
439 #define INCLUDE_xTaskAbortDelay                0
440 #define INCLUDE_xTaskGetHandle                 0
441 #define INCLUDE_xTaskResumeFromISR             1
442
443 #endif /* __FREERTOS_CONFIG_H__ */