]> git.sur5r.net Git - freertos/blob - FreeRTOS/Demo/CORTEX_M0_STM32F0518_IAR/main-full.c
Prepare for V7.3.0 release.
[freertos] / FreeRTOS / Demo / CORTEX_M0_STM32F0518_IAR / main-full.c
1 /*\r
2     FreeRTOS V7.3.0 - Copyright (C) 2012 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     >>>NOTE<<< The modification to the GPL is included to allow you to\r
33     distribute a combined work that includes FreeRTOS without being obliged to\r
34     provide the source code for proprietary components outside of the FreeRTOS\r
35     kernel.  FreeRTOS is distributed in the hope that it will be useful, but\r
36     WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY\r
37     or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for\r
38     more details. You should have received a copy of the GNU General Public\r
39     License and the FreeRTOS license exception along with FreeRTOS; if not it\r
40     can be viewed here: http://www.freertos.org/a00114.html and also obtained\r
41     by writing to Richard Barry, contact details for whom are available on the\r
42     FreeRTOS WEB site.\r
43 \r
44     1 tab == 4 spaces!\r
45     \r
46     ***************************************************************************\r
47      *                                                                       *\r
48      *    Having a problem?  Start by reading the FAQ "My application does   *\r
49      *    not run, what could be wrong?"                                     *\r
50      *                                                                       *\r
51      *    http://www.FreeRTOS.org/FAQHelp.html                               *\r
52      *                                                                       *\r
53     ***************************************************************************\r
54 \r
55     \r
56     http://www.FreeRTOS.org - Documentation, training, latest versions, license \r
57     and contact details.  \r
58     \r
59     http://www.FreeRTOS.org/plus - A selection of FreeRTOS ecosystem products,\r
60     including FreeRTOS+Trace - an indispensable productivity tool.\r
61 \r
62     Real Time Engineers ltd license FreeRTOS to High Integrity Systems, who sell \r
63     the code with commercial support, indemnification, and middleware, under \r
64     the OpenRTOS brand: http://www.OpenRTOS.com.  High Integrity Systems also\r
65     provide a safety engineered and independently SIL3 certified version under \r
66     the SafeRTOS brand: http://www.SafeRTOS.com.\r
67 */\r
68 \r
69 /******************************************************************************\r
70  * NOTE 1:  This project provides two demo applications.  A simple blinky style\r
71  * project, and a more comprehensive test and demo application.  The\r
72  * mainCREATE_SIMPLE_BLINKY_DEMO_ONLY setting in main.c is used to select\r
73  * between the two.  See the notes on using mainCREATE_SIMPLE_BLINKY_DEMO_ONLY\r
74  * in main.c.  This file implements the comprehensive test and demo version.\r
75  *\r
76  * NOTE 2:  This file only contains the source code that is specific to the\r
77  * full demo.  Generic functions, such FreeRTOS hook functions, and functions\r
78  * required to configure the hardware, are defined in main.c.\r
79  ******************************************************************************\r
80  *\r
81  * main_full() creates a set of standard demo tasks, some application specific\r
82  * tasks, and four timers.  It then starts the scheduler.  The web documentation\r
83  * provides more details of the standard demo application tasks, which provide\r
84  * no particular functionality, but do provide a good example of how to use the\r
85  * FreeRTOS API.\r
86  *\r
87  * In addition to the standard demo tasks, the following tasks and timer are\r
88  * defined and/or created within this file:\r
89  *\r
90  * "Reg test" tasks - These fill the registers with known values, then check\r
91  * that each register maintains its expected value for the lifetime of the\r
92  * task.  Each task uses a different set of values.  The reg test tasks execute\r
93  * with a very low priority, so get preempted very frequently.  A register\r
94  * containing an unexpected value is indicative of an error in the context\r
95  * switching mechanism.\r
96  *\r
97  * "Flash timers" - A software timer callback function is defined that does\r
98  * nothing but toggle an LED.  Three software timers are created that each\r
99  * use the same callback function, but each toggles a different LED at a\r
100  * different frequency.  One software timer uses LED1, another LED2 and the\r
101  * third LED3.\r
102  *\r
103  * "Check" software timer - The check timer period is initially set to three\r
104  * seconds.  Its callback function checks that all the standard demo tasks, and\r
105  * the register check tasks, are not only still executing, but are executing\r
106  * without reporting any errors.  If the check timer callback discovers that a\r
107  * task has either stalled, or reported an error, then it changes the period of\r
108  * the check timer from the initial three seconds, to just 200ms.  The callback\r
109  * function also toggles LED 4 each time it is called.  This provides a visual\r
110  * indication of the system status:  If the LED toggles every three seconds,\r
111  * then no issues have been discovered.  If the LED toggles every 200ms, then\r
112  * an issue has been discovered with at least one task.\r
113  */\r
114 \r
115 /* Kernel includes. */\r
116 #include "FreeRTOS.h"\r
117 #include "task.h"\r
118 #include "queue.h"\r
119 #include "timers.h"\r
120 \r
121 /* Common demo includes. */\r
122 #include "blocktim.h"\r
123 #include "countsem.h"\r
124 #include "recmutex.h"\r
125 #include "ParTest.h"\r
126 #include "dynamic.h"\r
127 \r
128 /* Hardware includes. */\r
129 #include "stm320518_eval.h"\r
130 \r
131 /* The period after which the check timer will expire provided no errors have\r
132 been reported by any of the standard demo tasks.  ms are converted to the\r
133 equivalent in ticks using the portTICK_RATE_MS constant. */\r
134 #define mainCHECK_TIMER_PERIOD_MS                       ( 3000UL / portTICK_RATE_MS )\r
135 \r
136 /* The period at which the check timer will expire if an error has been\r
137 reported in one of the standard demo tasks.  ms are converted to the equivalent\r
138 in ticks using the portTICK_RATE_MS constant. */\r
139 #define mainERROR_CHECK_TIMER_PERIOD_MS         ( 200UL / portTICK_RATE_MS )\r
140 \r
141 /* A block time of zero simply means "don't block". */\r
142 #define mainDONT_BLOCK                                          ( 0UL )\r
143 \r
144 /* The base toggle rate used by the flash timers.  Each toggle rate is a\r
145 multiple of this. */\r
146 #define mainFLASH_TIMER_BASE_RATE                       ( 200UL / portTICK_RATE_MS )\r
147 \r
148 /* The LED toggle by the check timer. */\r
149 #define mainCHECK_LED                                           ( 3 )\r
150 /*-----------------------------------------------------------*/\r
151 \r
152 /*\r
153  * Register check tasks, as described at the top of this file.  The nature of\r
154  * these files necessitates that they are written in an assembly.\r
155  */\r
156 extern void vRegTest1Task( void *pvParameters );\r
157 extern void vRegTest2Task( void *pvParameters );\r
158 \r
159 /*\r
160  * The hardware only has a single LED.  Simply toggle it.\r
161  */\r
162 extern void vMainToggleLED( void );\r
163 \r
164 /*\r
165  * The check timer callback function, as described at the top of this file.\r
166  */\r
167 static void prvCheckTimerCallback( xTimerHandle xTimer );\r
168 \r
169 /*\r
170  * The flash timer callback function, as described at the top of this file.\r
171  * This callback function is assigned to three separate software timers.\r
172  */\r
173 static void prvFlashTimerCallback( xTimerHandle xTimer );\r
174 \r
175 /*\r
176  * Called by main() to create the comprehensive test/demo application if\r
177  * mainCREATE_SIMPLE_BLINKY_DEMO_ONLY is not set to 1.\r
178  */\r
179 void main_full( void );\r
180 \r
181 /*-----------------------------------------------------------*/\r
182 \r
183 /* The following two variables are used to communicate the status of the\r
184 register check tasks to the check software timer.  If the variables keep\r
185 incrementing, then the register check tasks has not discovered any errors.  If\r
186 a variable stops incrementing, then an error has been found. */\r
187 volatile unsigned long ulRegTest1LoopCounter = 0UL, ulRegTest2LoopCounter = 0UL;\r
188 \r
189 /*-----------------------------------------------------------*/\r
190 \r
191 void main_full( void )\r
192 {\r
193 xTimerHandle xTimer = NULL;\r
194 unsigned long ulTimer;\r
195 const unsigned long ulTimersToCreate = 3L;\r
196 /* The register test tasks are asm functions that don't use a stack.  The\r
197 stack allocated just has to be large enough to hold the task context, and\r
198 for the additional required for the stack overflow checking to work (if\r
199 configured). */\r
200 const size_t xRegTestStackSize = 25U;\r
201 \r
202         /* Create the standard demo tasks */\r
203         vCreateBlockTimeTasks();\r
204         vStartCountingSemaphoreTasks();\r
205         vStartRecursiveMutexTasks();\r
206         vStartDynamicPriorityTasks();\r
207 \r
208         /* Create the register test tasks as described at the top of this file.\r
209         These are naked functions that don't use any stack.  A stack still has\r
210         to be allocated to hold the task context. */\r
211         xTaskCreate(    vRegTest1Task,                  /* Function that implements the task. */\r
212                                         ( signed char * ) "Reg1", /* Text name of the task. */\r
213                                         xRegTestStackSize,              /* Stack allocated to the task. */\r
214                                         NULL,                                   /* The task parameter is not used. */\r
215                                         tskIDLE_PRIORITY,               /* The priority to assign to the task. */\r
216                                         NULL );                                 /* Don't receive a handle back, it is not needed. */\r
217 \r
218         xTaskCreate(    vRegTest2Task,                  /* Function that implements the task. */\r
219                                         ( signed char * ) "Reg2", /* Text name of the task. */\r
220                                         xRegTestStackSize,              /* Stack allocated to the task. */\r
221                                         NULL,                                   /* The task parameter is not used. */\r
222                                         tskIDLE_PRIORITY,               /* The priority to assign to the task. */\r
223                                         NULL );                                 /* Don't receive a handle back, it is not needed. */\r
224 \r
225         /* Create the three flash timers. */\r
226         for( ulTimer = 0UL; ulTimer < ulTimersToCreate; ulTimer++ )\r
227         {\r
228                 xTimer = xTimerCreate(  ( const signed char * ) "FlashTimer",   /* A text name, purely to help debugging. */\r
229                                                                 ( mainFLASH_TIMER_BASE_RATE * ( ulTimer + 1UL ) ),      /* The timer period, in this case 3000ms (3s). */\r
230                                                                 pdTRUE,                                                                 /* This is an auto-reload timer, so xAutoReload is set to pdTRUE. */\r
231                                                                 ( void * ) ulTimer,                                             /* The ID is used to hold the number of the LED that will be flashed. */\r
232                                                                 prvFlashTimerCallback                                   /* The callback function that inspects the status of all the other tasks. */\r
233                                                         );\r
234                 \r
235                 if( xTimer != NULL )\r
236                 {\r
237                         xTimerStart( xTimer, mainDONT_BLOCK );\r
238                 }\r
239         }\r
240         \r
241         /* Create the software timer that performs the 'check' functionality,\r
242         as described at the top of this file. */\r
243         xTimer = xTimerCreate(  ( const signed char * ) "CheckTimer",/* A text name, purely to help debugging. */\r
244                                                         ( mainCHECK_TIMER_PERIOD_MS ),          /* The timer period, in this case 3000ms (3s). */\r
245                                                         pdTRUE,                                                         /* This is an auto-reload timer, so xAutoReload is set to pdTRUE. */\r
246                                                         ( void * ) 0,                                           /* The ID is not used, so can be set to anything. */\r
247                                                         prvCheckTimerCallback                           /* The callback function that inspects the status of all the other tasks. */\r
248                                                 );\r
249 \r
250         /* If the software timer was created successfully, start it.  It won't\r
251         actually start running until the scheduler starts.  A block time of\r
252         zero is used in this call, although any value could be used as the block\r
253         time will be ignored because the scheduler has not started yet. */\r
254         if( xTimer != NULL )\r
255         {\r
256                 xTimerStart( xTimer, mainDONT_BLOCK );\r
257         }\r
258 \r
259         /* Start the kernel.  From here on, only tasks and interrupts will run. */\r
260         vTaskStartScheduler();\r
261 \r
262         /* If all is well, the scheduler will now be running, and the following\r
263         line will never be reached.  If the following line does execute, then there\r
264         was     insufficient FreeRTOS heap memory available for the idle and/or timer\r
265         tasks to be created.  See the memory management section on the FreeRTOS web\r
266         site, or the FreeRTOS tutorial books for more details. */\r
267         for( ;; );\r
268 }\r
269 /*-----------------------------------------------------------*/\r
270 \r
271 /* See the description at the top of this file. */\r
272 static void prvCheckTimerCallback( xTimerHandle xTimer )\r
273 {\r
274 static long lChangedTimerPeriodAlready = pdFALSE;\r
275 static unsigned long ulLastRegTest1Value = 0, ulLastRegTest2Value = 0;\r
276 unsigned long ulErrorFound = pdFALSE;\r
277 \r
278         /* Check all the demo and test tasks to ensure that they are all still\r
279         running, and that none have detected an error. */\r
280         if( xAreDynamicPriorityTasksStillRunning() != pdPASS )\r
281         {\r
282                 ulErrorFound |= ( 0x01UL << 0UL );\r
283         }\r
284 \r
285         if( xAreBlockTimeTestTasksStillRunning() != pdPASS )\r
286         {\r
287                 ulErrorFound |= ( 0x01UL << 1UL );\r
288         }\r
289 \r
290         if( xAreCountingSemaphoreTasksStillRunning() != pdPASS )\r
291         {\r
292                 ulErrorFound |= ( 0x01UL << 2UL );\r
293         }\r
294 \r
295         if( xAreRecursiveMutexTasksStillRunning() != pdPASS )\r
296         {\r
297                 ulErrorFound |= ( 0x01UL << 3UL );\r
298         }\r
299 \r
300         /* Check that the register test 1 task is still running. */\r
301         if( ulLastRegTest1Value == ulRegTest1LoopCounter )\r
302         {\r
303                 ulErrorFound |= ( 0x01UL << 4UL );\r
304         }\r
305         ulLastRegTest1Value = ulRegTest1LoopCounter;\r
306 \r
307         /* Check that the register test 2 task is still running. */\r
308         if( ulLastRegTest2Value == ulRegTest2LoopCounter )\r
309         {\r
310                 ulErrorFound |= ( 0x01UL << 5UL );\r
311         }\r
312         ulLastRegTest2Value = ulRegTest2LoopCounter;\r
313 \r
314         /* Toggle the check LED to give an indication of the system status.  If\r
315         the LED toggles every mainCHECK_TIMER_PERIOD_MS milliseconds then\r
316         everything is ok.  A faster toggle indicates an error. */\r
317         vParTestToggleLED( mainCHECK_LED );\r
318 \r
319         /* Have any errors been latched in ulErrorFound?  If so, shorten the\r
320         period of the check timer to mainERROR_CHECK_TIMER_PERIOD_MS milliseconds.\r
321         This will result in an increase in the rate at which mainCHECK_LED\r
322         toggles. */\r
323         if( ulErrorFound != pdFALSE )\r
324         {\r
325                 if( lChangedTimerPeriodAlready == pdFALSE )\r
326                 {\r
327                         lChangedTimerPeriodAlready = pdTRUE;\r
328 \r
329                         /* This call to xTimerChangePeriod() uses a zero block time.\r
330                         Functions called from inside of a timer callback function must\r
331                         *never* attempt to block. */\r
332                         xTimerChangePeriod( xTimer, ( mainERROR_CHECK_TIMER_PERIOD_MS ), mainDONT_BLOCK );\r
333                 }\r
334         }\r
335 }\r
336 /*-----------------------------------------------------------*/\r
337 \r
338 static void prvFlashTimerCallback( xTimerHandle xTimer )\r
339 {\r
340 unsigned long ulLED;\r
341 \r
342         /* This callback function is assigned to three separate software timers.\r
343         Each timer toggles a different LED.  Obtain the number of the LED that\r
344         this timer is toggling. */\r
345         ulLED = ( unsigned long ) pvTimerGetTimerID( xTimer );\r
346 \r
347         /* Toggle the LED. */\r
348         vParTestToggleLED( ulLED );     \r
349 }\r
350 \r