]> git.sur5r.net Git - freertos/blob - FreeRTOS/Demo/RX100-RSK_IAR/FreeRTOSConfig.h
Update version number ready to release the FAT file system demo.
[freertos] / FreeRTOS / Demo / RX100-RSK_IAR / FreeRTOSConfig.h
1 /*\r
2     FreeRTOS V7.4.2 - Copyright (C) 2013 Real Time Engineers Ltd.\r
3 \r
4     FEATURES AND PORTS ARE ADDED TO FREERTOS ALL THE TIME.  PLEASE VISIT\r
5     http://www.FreeRTOS.org TO ENSURE YOU ARE USING THE LATEST VERSION.\r
6 \r
7     ***************************************************************************\r
8      *                                                                       *\r
9      *    FreeRTOS tutorial books are available in pdf and paperback.        *\r
10      *    Complete, revised, and edited pdf reference manuals are also       *\r
11      *    available.                                                         *\r
12      *                                                                       *\r
13      *    Purchasing FreeRTOS documentation will not only help you, by       *\r
14      *    ensuring you get running as quickly as possible and with an        *\r
15      *    in-depth knowledge of how to use FreeRTOS, it will also help       *\r
16      *    the FreeRTOS project to continue with its mission of providing     *\r
17      *    professional grade, cross platform, de facto standard solutions    *\r
18      *    for microcontrollers - completely free of charge!                  *\r
19      *                                                                       *\r
20      *    >>> See http://www.FreeRTOS.org/Documentation for details. <<<     *\r
21      *                                                                       *\r
22      *    Thank you for using FreeRTOS, and thank you for your support!      *\r
23      *                                                                       *\r
24     ***************************************************************************\r
25 \r
26 \r
27     This file is part of the FreeRTOS distribution.\r
28 \r
29     FreeRTOS is free software; you can redistribute it and/or modify it under\r
30     the terms of the GNU General Public License (version 2) as published by the\r
31     Free Software Foundation AND MODIFIED BY the FreeRTOS exception.\r
32 \r
33     >>>>>>NOTE<<<<<< The modification to the GPL is included to allow you to\r
34     distribute a combined work that includes FreeRTOS without being obliged to\r
35     provide the source code for proprietary components outside of the FreeRTOS\r
36     kernel.\r
37 \r
38     FreeRTOS is distributed in the hope that it will be useful, but WITHOUT ANY\r
39     WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS\r
40     FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more\r
41     details. You should have received a copy of the GNU General Public License\r
42     and the FreeRTOS license exception along with FreeRTOS; if not it can be\r
43     viewed here: http://www.freertos.org/a00114.html and also obtained by\r
44     writing to Real Time Engineers Ltd., contact details for whom are available\r
45     on the FreeRTOS WEB site.\r
46 \r
47     1 tab == 4 spaces!\r
48 \r
49     ***************************************************************************\r
50      *                                                                       *\r
51      *    Having a problem?  Start by reading the FAQ "My application does   *\r
52      *    not run, what could be wrong?"                                     *\r
53      *                                                                       *\r
54      *    http://www.FreeRTOS.org/FAQHelp.html                               *\r
55      *                                                                       *\r
56     ***************************************************************************\r
57 \r
58 \r
59     http://www.FreeRTOS.org - Documentation, books, training, latest versions,\r
60     license and Real Time Engineers Ltd. contact details.\r
61 \r
62     http://www.FreeRTOS.org/plus - A selection of FreeRTOS ecosystem products,\r
63     including FreeRTOS+Trace - an indispensable productivity tool, and our new\r
64     fully thread aware and reentrant UDP/IP stack.\r
65 \r
66     http://www.OpenRTOS.com - Real Time Engineers ltd license FreeRTOS to High\r
67     Integrity Systems, who sell the code with commercial support,\r
68     indemnification and middleware, under the OpenRTOS brand.\r
69 \r
70     http://www.SafeRTOS.com - High Integrity Systems also provide a safety\r
71     engineered and independently SIL3 certified version for use in safety and\r
72     mission critical applications that require provable dependability.\r
73 */\r
74 \r
75 \r
76 #ifndef FREERTOS_CONFIG_H\r
77 #define FREERTOS_CONFIG_H\r
78 \r
79 /* Hardware specifics. */\r
80 #include "platform.h"\r
81 \r
82 /*-----------------------------------------------------------\r
83  * Application specific definitions.\r
84  *\r
85  * These definitions should be adjusted for your particular hardware and\r
86  * application requirements.\r
87  *\r
88  * THESE PARAMETERS ARE DESCRIBED WITHIN THE 'CONFIGURATION' SECTION OF THE\r
89  * FreeRTOS API DOCUMENTATION AVAILABLE ON THE FreeRTOS.org WEB SITE.\r
90  *\r
91  * See http://www.freertos.org/a00110.html.\r
92  *----------------------------------------------------------*/\r
93 \r
94 /* DEMO SPECIFIC SETTING:\r
95  * Set configCREATE_LOW_POWER_DEMO to one to run the low power demo with tick\r
96  * suppression, or 0 to run the more comprehensive test and demo application.\r
97  * If configCREATE_LOW_POWER_DEMO is set to 1 then main() calls main_low_power().\r
98  * If configCREATE_LOW_POWER_DEMO is set to 0 then main() calls main_full().\r
99  */\r
100 #define configCREATE_LOW_POWER_DEMO             1\r
101 \r
102 \r
103 #define configUSE_PREEMPTION                    1\r
104 #define configUSE_TICKLESS_IDLE                 configCREATE_LOW_POWER_DEMO\r
105 #define configUSE_IDLE_HOOK                             0\r
106 #define configUSE_TICK_HOOK                             0\r
107 #define configCPU_CLOCK_HZ                              ( ICLK_HZ ) /* Set in mcu_info.h. */\r
108 #define configPERIPHERAL_CLOCK_HZ               ( PCLKB_HZ ) /* Set in muc_info.h. */\r
109 #define configTICK_RATE_HZ                              ( ( portTickType ) 1000 )\r
110 #define configMINIMAL_STACK_SIZE                ( ( unsigned short ) 100 )\r
111 #define configTOTAL_HEAP_SIZE                   ( ( size_t ) ( 9 * 1024 ) )\r
112 #define configMAX_TASK_NAME_LEN                 ( 12 )\r
113 #define configUSE_TRACE_FACILITY                1\r
114 #define configUSE_16_BIT_TICKS                  0\r
115 #define configIDLE_SHOULD_YIELD                 1\r
116 #define configUSE_CO_ROUTINES                   0\r
117 #define configUSE_MUTEXES                               1\r
118 #define configGENERATE_RUN_TIME_STATS   0\r
119 #define configCHECK_FOR_STACK_OVERFLOW  2\r
120 #define configUSE_RECURSIVE_MUTEXES             1\r
121 #define configQUEUE_REGISTRY_SIZE               0\r
122 #define configUSE_MALLOC_FAILED_HOOK    0\r
123 #define configUSE_APPLICATION_TASK_TAG  0\r
124 \r
125 #define configMAX_PRIORITIES                    ( ( unsigned portBASE_TYPE ) 7 )\r
126 #define configMAX_CO_ROUTINE_PRIORITIES ( 2 )\r
127 \r
128 /* Software timer definitions - only included when the demo is configured to\r
129 build the full demo (as opposed to the low power demo). */\r
130 #if configCREATE_LOW_POWER_DEMO == 1\r
131         #define configUSE_TIMERS                                0\r
132 #else\r
133         #define configUSE_TIMERS                                1\r
134         #define configTIMER_TASK_PRIORITY               ( 3 )\r
135         #define configTIMER_QUEUE_LENGTH                5\r
136         #define configTIMER_TASK_STACK_DEPTH    ( configMINIMAL_STACK_SIZE )\r
137 #endif /* configCREATE_LOW_POWER_DEMO */\r
138 \r
139 /*\r
140 The interrupt priority used by the kernel itself for the tick interrupt and\r
141 the pended interrupt is set by configKERNEL_INTERRUPT_PRIORITY.  This would\r
142 normally be the lowest priority (1 in this case).  The maximum interrupt\r
143 priority from which FreeRTOS API calls can be made is set by\r
144 configMAX_SYSCALL_INTERRUPT_PRIORITY.  Interrupts that use a priority above this\r
145 will not be effected by anything the kernel is doing.  Interrupts at or below\r
146 this priority can use FreeRTOS API functions - but *only* those that end in\r
147 "FromISR".  Both these constants are defined in 'PriorityDefinitions.h' so they\r
148 can also be included in assembly source files.\r
149 */\r
150 #include "PriorityDefinitions.h"\r
151 \r
152 /* Set the following definitions to 1 to include the API function, or zero\r
153 to exclude the API function. */\r
154 \r
155 #define INCLUDE_vTaskPrioritySet                        1\r
156 #define INCLUDE_uxTaskPriorityGet                       1\r
157 #define INCLUDE_vTaskDelete                                     1\r
158 #define INCLUDE_vTaskCleanUpResources           0\r
159 #define INCLUDE_vTaskSuspend                            1\r
160 #define INCLUDE_vTaskDelayUntil                         1\r
161 #define INCLUDE_vTaskDelay                                      1\r
162 #define INCLUDE_uxTaskGetStackHighWaterMark     1\r
163 #define INCLUDE_xTaskGetSchedulerState          1\r
164 \r
165 extern void vAssertCalled( void );\r
166 #define configASSERT( x ) if( ( x ) == 0 ) vAssertCalled();\r
167 \r
168 /* The configPRE_SLEEP_PROCESSING() and configPOST_SLEEP_PROCESSING() macros\r
169 allow the application writer to add additional code before and after the MCU is\r
170 placed into the low power state respectively.  The implementations provided in\r
171 this demo can be extended to save even more power - for example the analog\r
172 input used by the low power demo could be switched off in the pre-sleep macro\r
173 and back on again in the post sleep macro. */\r
174 void vPreSleepProcessing( unsigned long xExpectedIdleTime );\r
175 void vPostSleepProcessing( unsigned long xExpectedIdleTime );\r
176 #define configPRE_SLEEP_PROCESSING( xExpectedIdleTime ) vPreSleepProcessing( xExpectedIdleTime );\r
177 #define configPOST_SLEEP_PROCESSING( xExpectedIdleTime ) vPostSleepProcessing( xExpectedIdleTime );\r
178 \r
179 /* configTICK_VECTOR must be set to the interrupt vector used by the peripheral\r
180 that generates the tick interrupt. */\r
181 #define configTICK_VECTOR VECT_CMT0_CMI0\r
182 \r
183 #endif /* FREERTOS_CONFIG_H */\r