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