]> git.sur5r.net Git - freertos/blob - FreeRTOS/Demo/Common/Minimal/flop.c
Prepare for V7.3.0 release.
[freertos] / FreeRTOS / Demo / Common / Minimal / flop.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  * Creates eight tasks, each of which loops continuously performing an (emulated) \r
71  * floating point calculation.\r
72  *\r
73  * All the tasks run at the idle priority and never block or yield.  This causes \r
74  * all eight tasks to time slice with the idle task.  Running at the idle priority \r
75  * means that these tasks will get pre-empted any time another task is ready to run\r
76  * or a time slice occurs.  More often than not the pre-emption will occur mid \r
77  * calculation, creating a good test of the schedulers context switch mechanism - a \r
78  * calculation producing an unexpected result could be a symptom of a corruption in \r
79  * the context of a task.\r
80  */\r
81 \r
82 #include <stdlib.h>\r
83 #include <math.h>\r
84 \r
85 /* Scheduler include files. */\r
86 #include "FreeRTOS.h"\r
87 #include "task.h"\r
88 \r
89 /* Demo program include files. */\r
90 #include "flop.h"\r
91 \r
92 #define mathSTACK_SIZE          configMINIMAL_STACK_SIZE\r
93 #define mathNUMBER_OF_TASKS  ( 8 )\r
94 \r
95 /* Four tasks, each of which performs a different floating point calculation.  \r
96 Each of the four is created twice. */\r
97 static portTASK_FUNCTION_PROTO( vCompetingMathTask1, pvParameters );\r
98 static portTASK_FUNCTION_PROTO( vCompetingMathTask2, pvParameters );\r
99 static portTASK_FUNCTION_PROTO( vCompetingMathTask3, pvParameters );\r
100 static portTASK_FUNCTION_PROTO( vCompetingMathTask4, pvParameters );\r
101 \r
102 /* These variables are used to check that all the tasks are still running.  If a \r
103 task gets a calculation wrong it will\r
104 stop incrementing its check variable. */\r
105 static volatile unsigned short usTaskCheck[ mathNUMBER_OF_TASKS ] = { ( unsigned short ) 0 };\r
106 \r
107 /*-----------------------------------------------------------*/\r
108 \r
109 void vStartMathTasks( unsigned portBASE_TYPE uxPriority )\r
110 {\r
111         xTaskCreate( vCompetingMathTask1, ( signed char * ) "Math1", mathSTACK_SIZE, ( void * ) &( usTaskCheck[ 0 ] ), uxPriority, NULL );\r
112         xTaskCreate( vCompetingMathTask2, ( signed char * ) "Math2", mathSTACK_SIZE, ( void * ) &( usTaskCheck[ 1 ] ), uxPriority, NULL );\r
113         xTaskCreate( vCompetingMathTask3, ( signed char * ) "Math3", mathSTACK_SIZE, ( void * ) &( usTaskCheck[ 2 ] ), uxPriority, NULL );\r
114         xTaskCreate( vCompetingMathTask4, ( signed char * ) "Math4", mathSTACK_SIZE, ( void * ) &( usTaskCheck[ 3 ] ), uxPriority, NULL );\r
115         xTaskCreate( vCompetingMathTask1, ( signed char * ) "Math5", mathSTACK_SIZE, ( void * ) &( usTaskCheck[ 4 ] ), uxPriority, NULL );\r
116         xTaskCreate( vCompetingMathTask2, ( signed char * ) "Math6", mathSTACK_SIZE, ( void * ) &( usTaskCheck[ 5 ] ), uxPriority, NULL );\r
117         xTaskCreate( vCompetingMathTask3, ( signed char * ) "Math7", mathSTACK_SIZE, ( void * ) &( usTaskCheck[ 6 ] ), uxPriority, NULL );\r
118         xTaskCreate( vCompetingMathTask4, ( signed char * ) "Math8", mathSTACK_SIZE, ( void * ) &( usTaskCheck[ 7 ] ), uxPriority, NULL );\r
119 }\r
120 /*-----------------------------------------------------------*/\r
121 \r
122 static portTASK_FUNCTION( vCompetingMathTask1, pvParameters )\r
123 {\r
124 volatile portDOUBLE d1, d2, d3, d4;\r
125 volatile unsigned short *pusTaskCheckVariable;\r
126 volatile portDOUBLE dAnswer;\r
127 short sError = pdFALSE;\r
128 \r
129         d1 = 123.4567;\r
130         d2 = 2345.6789;\r
131         d3 = -918.222;\r
132 \r
133         dAnswer = ( d1 + d2 ) * d3;\r
134 \r
135         /* The variable this task increments to show it is still running is passed in \r
136         as the parameter. */\r
137         pusTaskCheckVariable = ( unsigned short * ) pvParameters;\r
138 \r
139         /* Keep performing a calculation and checking the result against a constant. */\r
140         for(;;)\r
141         {\r
142                 d1 = 123.4567;\r
143                 d2 = 2345.6789;\r
144                 d3 = -918.222;\r
145 \r
146                 d4 = ( d1 + d2 ) * d3;\r
147 \r
148                 #if configUSE_PREEMPTION == 0\r
149                         taskYIELD();\r
150                 #endif\r
151 \r
152                 /* If the calculation does not match the expected constant, stop the \r
153                 increment of the check variable. */\r
154                 if( fabs( d4 - dAnswer ) > 0.001 )\r
155                 {\r
156                         sError = pdTRUE;\r
157                 }\r
158 \r
159                 if( sError == pdFALSE )\r
160                 {\r
161                         /* If the calculation has always been correct, increment the check \r
162                         variable so we know this task is still running okay. */\r
163                         ( *pusTaskCheckVariable )++;\r
164                 }\r
165 \r
166                 #if configUSE_PREEMPTION == 0\r
167                         taskYIELD();\r
168                 #endif\r
169 \r
170         }\r
171 }\r
172 /*-----------------------------------------------------------*/\r
173 \r
174 static portTASK_FUNCTION( vCompetingMathTask2, pvParameters )\r
175 {\r
176 volatile portDOUBLE d1, d2, d3, d4;\r
177 volatile unsigned short *pusTaskCheckVariable;\r
178 volatile portDOUBLE dAnswer;\r
179 short sError = pdFALSE;\r
180 \r
181         d1 = -389.38;\r
182         d2 = 32498.2;\r
183         d3 = -2.0001;\r
184 \r
185         dAnswer = ( d1 / d2 ) * d3;\r
186 \r
187 \r
188         /* The variable this task increments to show it is still running is passed in \r
189         as the parameter. */\r
190         pusTaskCheckVariable = ( unsigned short * ) pvParameters;\r
191 \r
192         /* Keep performing a calculation and checking the result against a constant. */\r
193         for( ;; )\r
194         {\r
195                 d1 = -389.38;\r
196                 d2 = 32498.2;\r
197                 d3 = -2.0001;\r
198 \r
199                 d4 = ( d1 / d2 ) * d3;\r
200 \r
201                 #if configUSE_PREEMPTION == 0\r
202                         taskYIELD();\r
203                 #endif\r
204                 \r
205                 /* If the calculation does not match the expected constant, stop the \r
206                 increment of the check variable. */\r
207                 if( fabs( d4 - dAnswer ) > 0.001 )\r
208                 {\r
209                         sError = pdTRUE;\r
210                 }\r
211 \r
212                 if( sError == pdFALSE )\r
213                 {\r
214                         /* If the calculation has always been correct, increment the check \r
215                         variable so we know\r
216                         this task is still running okay. */\r
217                         ( *pusTaskCheckVariable )++;\r
218                 }\r
219 \r
220                 #if configUSE_PREEMPTION == 0\r
221                         taskYIELD();\r
222                 #endif\r
223         }\r
224 }\r
225 /*-----------------------------------------------------------*/\r
226 \r
227 static portTASK_FUNCTION( vCompetingMathTask3, pvParameters )\r
228 {\r
229 volatile portDOUBLE *pdArray, dTotal1, dTotal2, dDifference;\r
230 volatile unsigned short *pusTaskCheckVariable;\r
231 const size_t xArraySize = 10;\r
232 size_t xPosition;\r
233 short sError = pdFALSE;\r
234 \r
235         /* The variable this task increments to show it is still running is passed in \r
236         as the parameter. */\r
237         pusTaskCheckVariable = ( unsigned short * ) pvParameters;\r
238 \r
239         pdArray = ( portDOUBLE * ) pvPortMalloc( xArraySize * sizeof( portDOUBLE ) );\r
240 \r
241         /* Keep filling an array, keeping a running total of the values placed in the \r
242         array.  Then run through the array adding up all the values.  If the two totals \r
243         do not match, stop the check variable from incrementing. */\r
244         for( ;; )\r
245         {\r
246                 dTotal1 = 0.0;\r
247                 dTotal2 = 0.0;\r
248 \r
249                 for( xPosition = 0; xPosition < xArraySize; xPosition++ )\r
250                 {\r
251                         pdArray[ xPosition ] = ( portDOUBLE ) xPosition + 5.5;\r
252                         dTotal1 += ( portDOUBLE ) xPosition + 5.5;      \r
253                 }\r
254 \r
255                 #if configUSE_PREEMPTION == 0\r
256                         taskYIELD();\r
257                 #endif\r
258 \r
259                 for( xPosition = 0; xPosition < xArraySize; xPosition++ )\r
260                 {\r
261                         dTotal2 += pdArray[ xPosition ];\r
262                 }\r
263 \r
264                 dDifference = dTotal1 - dTotal2;\r
265                 if( fabs( dDifference ) > 0.001 )\r
266                 {\r
267                         sError = pdTRUE;\r
268                 }\r
269 \r
270                 #if configUSE_PREEMPTION == 0\r
271                         taskYIELD();\r
272                 #endif\r
273 \r
274                 if( sError == pdFALSE )\r
275                 {\r
276                         /* If the calculation has always been correct, increment the check \r
277                         variable so we know     this task is still running okay. */\r
278                         ( *pusTaskCheckVariable )++;\r
279                 }\r
280         }\r
281 }\r
282 /*-----------------------------------------------------------*/\r
283 \r
284 static portTASK_FUNCTION( vCompetingMathTask4, pvParameters )\r
285 {\r
286 volatile portDOUBLE *pdArray, dTotal1, dTotal2, dDifference;\r
287 volatile unsigned short *pusTaskCheckVariable;\r
288 const size_t xArraySize = 10;\r
289 size_t xPosition;\r
290 short sError = pdFALSE;\r
291 \r
292         /* The variable this task increments to show it is still running is passed in \r
293         as the parameter. */\r
294         pusTaskCheckVariable = ( unsigned short * ) pvParameters;\r
295 \r
296         pdArray = ( portDOUBLE * ) pvPortMalloc( xArraySize * sizeof( portDOUBLE ) );\r
297 \r
298         /* Keep filling an array, keeping a running total of the values placed in the \r
299         array.  Then run through the array adding up all the values.  If the two totals \r
300         do not match, stop the check variable from incrementing. */\r
301         for( ;; )\r
302         {\r
303                 dTotal1 = 0.0;\r
304                 dTotal2 = 0.0;\r
305 \r
306                 for( xPosition = 0; xPosition < xArraySize; xPosition++ )\r
307                 {\r
308                         pdArray[ xPosition ] = ( portDOUBLE ) xPosition * 12.123;\r
309                         dTotal1 += ( portDOUBLE ) xPosition * 12.123;   \r
310                 }\r
311 \r
312                 #if configUSE_PREEMPTION == 0\r
313                         taskYIELD();\r
314                 #endif\r
315 \r
316                 for( xPosition = 0; xPosition < xArraySize; xPosition++ )\r
317                 {\r
318                         dTotal2 += pdArray[ xPosition ];\r
319                 }\r
320 \r
321                 dDifference = dTotal1 - dTotal2;\r
322                 if( fabs( dDifference ) > 0.001 )\r
323                 {\r
324                         sError = pdTRUE;\r
325                 }\r
326 \r
327                 #if configUSE_PREEMPTION == 0\r
328                         taskYIELD();\r
329                 #endif\r
330 \r
331                 if( sError == pdFALSE )\r
332                 {\r
333                         /* If the calculation has always been correct, increment the check \r
334                         variable so we know     this task is still running okay. */\r
335                         ( *pusTaskCheckVariable )++;\r
336                 }\r
337         }\r
338 }                                \r
339 /*-----------------------------------------------------------*/\r
340 \r
341 /* This is called to check that all the created tasks are still running. */\r
342 portBASE_TYPE xAreMathsTaskStillRunning( void )\r
343 {\r
344 /* Keep a history of the check variables so we know if they have been incremented \r
345 since the last call. */\r
346 static unsigned short usLastTaskCheck[ mathNUMBER_OF_TASKS ] = { ( unsigned short ) 0 };\r
347 portBASE_TYPE xReturn = pdTRUE, xTask;\r
348 \r
349         /* Check the maths tasks are still running by ensuring their check variables \r
350         are still incrementing. */\r
351         for( xTask = 0; xTask < mathNUMBER_OF_TASKS; xTask++ )\r
352         {\r
353                 if( usTaskCheck[ xTask ] == usLastTaskCheck[ xTask ] )\r
354                 {\r
355                         /* The check has not incremented so an error exists. */\r
356                         xReturn = pdFALSE;\r
357                 }\r
358 \r
359                 usLastTaskCheck[ xTask ] = usTaskCheck[ xTask ];\r
360         }\r
361 \r
362         return xReturn;\r
363 }\r
364 \r
365 \r
366 \r