]> git.sur5r.net Git - freertos/blob - FreeRTOS/Demo/RL78_E2Studio_GCC/src/Common-Demo-Tasks/dynamic.c
07d16e31ab42cae6cd2c91bc640381eb4a91d29f
[freertos] / FreeRTOS / Demo / RL78_E2Studio_GCC / src / Common-Demo-Tasks / dynamic.c
1 /*\r
2  * FreeRTOS Kernel V10.1.0\r
3  * Copyright (C) 2018 Amazon.com, Inc. or its affiliates.  All Rights Reserved.\r
4  *\r
5  * Permission is hereby granted, free of charge, to any person obtaining a copy of\r
6  * this software and associated documentation files (the "Software"), to deal in\r
7  * the Software without restriction, including without limitation the rights to\r
8  * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of\r
9  * the Software, and to permit persons to whom the Software is furnished to do so,\r
10  * subject to the following conditions:\r
11  *\r
12  * The above copyright notice and this permission notice shall be included in all\r
13  * copies or substantial portions of the Software.\r
14  *\r
15  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r
16  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS\r
17  * FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR\r
18  * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER\r
19  * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN\r
20  * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\r
21  *\r
22  * http://www.FreeRTOS.org\r
23  * http://aws.amazon.com/freertos\r
24  *\r
25  * 1 tab == 4 spaces!\r
26  */\r
27 \r
28 /*\r
29  * The first test creates three tasks - two counter tasks (one continuous count\r
30  * and one limited count) and one controller.  A "count" variable is shared\r
31  * between all three tasks.  The two counter tasks should never be in a "ready"\r
32  * state at the same time.  The controller task runs at the same priority as\r
33  * the continuous count task, and at a lower priority than the limited count\r
34  * task.\r
35  *\r
36  * One counter task loops indefinitely, incrementing the shared count variable\r
37  * on each iteration.  To ensure it has exclusive access to the variable it\r
38  * raises it's priority above that of the controller task before each\r
39  * increment, lowering it again to it's original priority before starting the\r
40  * next iteration.\r
41  *\r
42  * The other counter task increments the shared count variable on each\r
43  * iteration of it's loop until the count has reached a limit of 0xff - at\r
44  * which point it suspends itself.  It will not start a new loop until the\r
45  * controller task has made it "ready" again by calling vTaskResume ().\r
46  * This second counter task operates at a higher priority than controller\r
47  * task so does not need to worry about mutual exclusion of the counter\r
48  * variable.\r
49  *\r
50  * The controller task is in two sections.  The first section controls and\r
51  * monitors the continuous count task.  When this section is operational the\r
52  * limited count task is suspended.  Likewise, the second section controls\r
53  * and monitors the limited count task.  When this section is operational the\r
54  * continuous count task is suspended.\r
55  *\r
56  * In the first section the controller task first takes a copy of the shared\r
57  * count variable.  To ensure mutual exclusion on the count variable it\r
58  * suspends the continuous count task, resuming it again when the copy has been\r
59  * taken.  The controller task then sleeps for a fixed period - during which\r
60  * the continuous count task will execute and increment the shared variable.\r
61  * When the controller task wakes it checks that the continuous count task\r
62  * has executed by comparing the copy of the shared variable with its current\r
63  * value.  This time, to ensure mutual exclusion, the scheduler itself is\r
64  * suspended with a call to vTaskSuspendAll ().  This is for demonstration\r
65  * purposes only and is not a recommended technique due to its inefficiency.\r
66  *\r
67  * After a fixed number of iterations the controller task suspends the\r
68  * continuous count task, and moves on to its second section.\r
69  *\r
70  * At the start of the second section the shared variable is cleared to zero.\r
71  * The limited count task is then woken from it's suspension by a call to\r
72  * vTaskResume ().  As this counter task operates at a higher priority than\r
73  * the controller task the controller task should not run again until the\r
74  * shared variable has been counted up to the limited value causing the counter\r
75  * task to suspend itself.  The next line after vTaskResume () is therefore\r
76  * a check on the shared variable to ensure everything is as expected.\r
77  *\r
78  *\r
79  * The second test consists of a couple of very simple tasks that post onto a\r
80  * queue while the scheduler is suspended.  This test was added to test parts\r
81  * of the scheduler not exercised by the first test.\r
82  *\r
83  */\r
84 \r
85 #include <stdlib.h>\r
86 \r
87 /* Scheduler include files. */\r
88 #include "FreeRTOS.h"\r
89 #include "task.h"\r
90 #include "semphr.h"\r
91 \r
92 /* Demo app include files. */\r
93 #include "dynamic.h"\r
94 \r
95 /* Function that implements the "limited count" task as described above. */\r
96 static portTASK_FUNCTION_PROTO( vLimitedIncrementTask, pvParameters );\r
97 \r
98 /* Function that implements the "continuous count" task as described above. */\r
99 static portTASK_FUNCTION_PROTO( vContinuousIncrementTask, pvParameters );\r
100 \r
101 /* Function that implements the controller task as described above. */\r
102 static portTASK_FUNCTION_PROTO( vCounterControlTask, pvParameters );\r
103 \r
104 static portTASK_FUNCTION_PROTO( vQueueReceiveWhenSuspendedTask, pvParameters );\r
105 static portTASK_FUNCTION_PROTO( vQueueSendWhenSuspendedTask, pvParameters );\r
106 \r
107 /* Demo task specific constants. */\r
108 #define priSTACK_SIZE                           ( configMINIMAL_STACK_SIZE )\r
109 #define priSLEEP_TIME                           ( ( TickType_t ) 128 / portTICK_PERIOD_MS )\r
110 #define priLOOPS                                        ( 5 )\r
111 #define priMAX_COUNT                            ( ( unsigned long ) 0xff )\r
112 #define priNO_BLOCK                                     ( ( TickType_t ) 0 )\r
113 #define priSUSPENDED_QUEUE_LENGTH       ( 1 )\r
114 \r
115 /*-----------------------------------------------------------*/\r
116 \r
117 /* Handles to the two counter tasks.  These could be passed in as parameters\r
118 to the controller task to prevent them having to be file scope. */\r
119 static TaskHandle_t xContinousIncrementHandle, xLimitedIncrementHandle;\r
120 \r
121 /* The shared counter variable.  This is passed in as a parameter to the two\r
122 counter variables for demonstration purposes. */\r
123 static unsigned long ulCounter;\r
124 \r
125 /* Variables used to check that the tasks are still operating without error.\r
126 Each complete iteration of the controller task increments this variable\r
127 provided no errors have been found.  The variable maintaining the same value\r
128 is therefore indication of an error. */\r
129 static volatile unsigned short usCheckVariable = ( unsigned short ) 0;\r
130 static volatile portBASE_TYPE xSuspendedQueueSendError = pdFALSE;\r
131 static volatile portBASE_TYPE xSuspendedQueueReceiveError = pdFALSE;\r
132 \r
133 /* Queue used by the second test. */\r
134 static QueueHandle_t xSuspendedTestQueue;\r
135 \r
136 /*-----------------------------------------------------------*/\r
137 /*\r
138  * Start the three tasks as described at the top of the file.\r
139  * Note that the limited count task is given a higher priority.\r
140  */\r
141 void vStartDynamicPriorityTasks( void )\r
142 {\r
143         xSuspendedTestQueue = xQueueCreate( priSUSPENDED_QUEUE_LENGTH, sizeof( unsigned long ) );\r
144 \r
145         /* vQueueAddToRegistry() adds the queue to the queue registry, if one is\r
146         in use.  The queue registry is provided as a means for kernel aware\r
147         debuggers to locate queues and has no purpose if a kernel aware debugger\r
148         is not being used.  The call to vQueueAddToRegistry() will be removed\r
149         by the pre-processor if configQUEUE_REGISTRY_SIZE is not defined or is\r
150         defined to be less than 1. */\r
151         vQueueAddToRegistry( xSuspendedTestQueue, ( signed char * ) "Suspended_Test_Queue" );\r
152 \r
153         xTaskCreate( vContinuousIncrementTask, "CNT_INC", priSTACK_SIZE, ( void * ) &ulCounter, tskIDLE_PRIORITY, &xContinousIncrementHandle );\r
154         xTaskCreate( vLimitedIncrementTask, "LIM_INC", priSTACK_SIZE, ( void * ) &ulCounter, tskIDLE_PRIORITY + 1, &xLimitedIncrementHandle );\r
155         xTaskCreate( vCounterControlTask, "C_CTRL", priSTACK_SIZE, NULL, tskIDLE_PRIORITY, NULL );\r
156         xTaskCreate( vQueueSendWhenSuspendedTask, "SUSP_TX", priSTACK_SIZE, NULL, tskIDLE_PRIORITY, NULL );\r
157         xTaskCreate( vQueueReceiveWhenSuspendedTask, "SUSP_RX", priSTACK_SIZE, NULL, tskIDLE_PRIORITY, NULL );\r
158 }\r
159 /*-----------------------------------------------------------*/\r
160 \r
161 /*\r
162  * Just loops around incrementing the shared variable until the limit has been\r
163  * reached.  Once the limit has been reached it suspends itself.\r
164  */\r
165 static portTASK_FUNCTION( vLimitedIncrementTask, pvParameters )\r
166 {\r
167 unsigned long *pulCounter;\r
168 \r
169         /* Take a pointer to the shared variable from the parameters passed into\r
170         the task. */\r
171         pulCounter = ( unsigned long * ) pvParameters;\r
172 \r
173         /* This will run before the control task, so the first thing it does is\r
174         suspend - the control task will resume it when ready. */\r
175         vTaskSuspend( NULL );\r
176 \r
177         for( ;; )\r
178         {\r
179                 /* Just count up to a value then suspend. */\r
180                 ( *pulCounter )++;\r
181 \r
182                 if( *pulCounter >= priMAX_COUNT )\r
183                 {\r
184                         vTaskSuspend( NULL );\r
185                 }\r
186         }\r
187 }\r
188 /*-----------------------------------------------------------*/\r
189 \r
190 /*\r
191  * Just keep counting the shared variable up.  The control task will suspend\r
192  * this task when it wants.\r
193  */\r
194 static portTASK_FUNCTION( vContinuousIncrementTask, pvParameters )\r
195 {\r
196 unsigned long *pulCounter;\r
197 unsigned portBASE_TYPE uxOurPriority;\r
198 \r
199         /* Take a pointer to the shared variable from the parameters passed into\r
200         the task. */\r
201         pulCounter = ( unsigned long * ) pvParameters;\r
202 \r
203         /* Query our priority so we can raise it when exclusive access to the\r
204         shared variable is required. */\r
205         uxOurPriority = uxTaskPriorityGet( NULL );\r
206 \r
207         for( ;; )\r
208         {\r
209                 /* Raise our priority above the controller task to ensure a context\r
210                 switch does not occur while we are accessing this variable. */\r
211                 vTaskPrioritySet( NULL, uxOurPriority + 1 );\r
212                         ( *pulCounter )++;\r
213                 vTaskPrioritySet( NULL, uxOurPriority );\r
214         }\r
215 }\r
216 /*-----------------------------------------------------------*/\r
217 \r
218 /*\r
219  * Controller task as described above.\r
220  */\r
221 static portTASK_FUNCTION( vCounterControlTask, pvParameters )\r
222 {\r
223 unsigned long ulLastCounter;\r
224 short sLoops;\r
225 short sError = pdFALSE;\r
226 \r
227         /* Just to stop warning messages. */\r
228         ( void ) pvParameters;\r
229 \r
230         for( ;; )\r
231         {\r
232                 /* Start with the counter at zero. */\r
233                 ulCounter = ( unsigned long ) 0;\r
234 \r
235                 /* First section : */\r
236 \r
237                 /* Check the continuous count task is running. */\r
238                 for( sLoops = 0; sLoops < priLOOPS; sLoops++ )\r
239                 {\r
240                         /* Suspend the continuous count task so we can take a mirror of the\r
241                         shared variable without risk of corruption. */\r
242                         vTaskSuspend( xContinousIncrementHandle );\r
243                                 ulLastCounter = ulCounter;\r
244                         vTaskResume( xContinousIncrementHandle );\r
245 \r
246                         /* Now delay to ensure the other task has processor time. */\r
247                         vTaskDelay( priSLEEP_TIME );\r
248 \r
249                         /* Check the shared variable again.  This time to ensure mutual\r
250                         exclusion the whole scheduler will be locked.  This is just for\r
251                         demo purposes! */\r
252                         vTaskSuspendAll();\r
253                         {\r
254                                 if( ulLastCounter == ulCounter )\r
255                                 {\r
256                                         /* The shared variable has not changed.  There is a problem\r
257                                         with the continuous count task so flag an error. */\r
258                                         sError = pdTRUE;\r
259                                 }\r
260                         }\r
261                         xTaskResumeAll();\r
262                 }\r
263 \r
264 \r
265                 /* Second section: */\r
266 \r
267                 /* Suspend the continuous counter task so it stops accessing the shared variable. */\r
268                 vTaskSuspend( xContinousIncrementHandle );\r
269 \r
270                 /* Reset the variable. */\r
271                 ulCounter = ( unsigned long ) 0;\r
272 \r
273                 /* Resume the limited count task which has a higher priority than us.\r
274                 We should therefore not return from this call until the limited count\r
275                 task has suspended itself with a known value in the counter variable. */\r
276                 vTaskResume( xLimitedIncrementHandle );\r
277 \r
278                 /* Does the counter variable have the expected value? */\r
279                 if( ulCounter != priMAX_COUNT )\r
280                 {\r
281                         sError = pdTRUE;\r
282                 }\r
283 \r
284                 if( sError == pdFALSE )\r
285                 {\r
286                         /* If no errors have occurred then increment the check variable. */\r
287                         portENTER_CRITICAL();\r
288                                 usCheckVariable++;\r
289                         portEXIT_CRITICAL();\r
290                 }\r
291 \r
292                 /* Resume the continuous count task and do it all again. */\r
293                 vTaskResume( xContinousIncrementHandle );\r
294         }\r
295 }\r
296 /*-----------------------------------------------------------*/\r
297 \r
298 static portTASK_FUNCTION( vQueueSendWhenSuspendedTask, pvParameters )\r
299 {\r
300 static unsigned long ulValueToSend = ( unsigned long ) 0;\r
301 \r
302         /* Just to stop warning messages. */\r
303         ( void ) pvParameters;\r
304 \r
305         for( ;; )\r
306         {\r
307                 vTaskSuspendAll();\r
308                 {\r
309                         /* We must not block while the scheduler is suspended! */\r
310                         if( xQueueSend( xSuspendedTestQueue, ( void * ) &ulValueToSend, priNO_BLOCK ) != pdTRUE )\r
311                         {\r
312                                 xSuspendedQueueSendError = pdTRUE;\r
313                         }\r
314                 }\r
315                 xTaskResumeAll();\r
316 \r
317                 vTaskDelay( priSLEEP_TIME );\r
318 \r
319                 ++ulValueToSend;\r
320         }\r
321 }\r
322 /*-----------------------------------------------------------*/\r
323 \r
324 static portTASK_FUNCTION( vQueueReceiveWhenSuspendedTask, pvParameters )\r
325 {\r
326 static unsigned long ulExpectedValue = ( unsigned long ) 0, ulReceivedValue;\r
327 portBASE_TYPE xGotValue;\r
328 \r
329         /* Just to stop warning messages. */\r
330         ( void ) pvParameters;\r
331 \r
332         for( ;; )\r
333         {\r
334                 do\r
335                 {\r
336                         /* Suspending the scheduler here is fairly pointless and\r
337                         undesirable for a normal application.  It is done here purely\r
338                         to test the scheduler.  The inner xTaskResumeAll() should\r
339                         never return pdTRUE as the scheduler is still locked by the\r
340                         outer call. */\r
341                         vTaskSuspendAll();\r
342                         {\r
343                                 vTaskSuspendAll();\r
344                                 {\r
345                                         xGotValue = xQueueReceive( xSuspendedTestQueue, ( void * ) &ulReceivedValue, priNO_BLOCK );\r
346                                 }\r
347                                 if( xTaskResumeAll() )\r
348                                 {\r
349                                         xSuspendedQueueReceiveError = pdTRUE;\r
350                                 }\r
351                         }\r
352                         xTaskResumeAll();\r
353 \r
354                         #if configUSE_PREEMPTION == 0\r
355                         {\r
356                                 taskYIELD();\r
357                         }\r
358                         #endif\r
359 \r
360                 } while( xGotValue == pdFALSE );\r
361 \r
362                 if( ulReceivedValue != ulExpectedValue )\r
363                 {\r
364                         xSuspendedQueueReceiveError = pdTRUE;\r
365                 }\r
366 \r
367                 ++ulExpectedValue;\r
368         }\r
369 }\r
370 /*-----------------------------------------------------------*/\r
371 \r
372 /* Called to check that all the created tasks are still running without error. */\r
373 portBASE_TYPE xAreDynamicPriorityTasksStillRunning( void )\r
374 {\r
375 /* Keep a history of the check variables so we know if it has been incremented\r
376 since the last call. */\r
377 static unsigned short usLastTaskCheck = ( unsigned short ) 0;\r
378 portBASE_TYPE xReturn = pdTRUE;\r
379 \r
380         /* Check the tasks are still running by ensuring the check variable\r
381         is still incrementing. */\r
382 \r
383         if( usCheckVariable == usLastTaskCheck )\r
384         {\r
385                 /* The check has not incremented so an error exists. */\r
386                 xReturn = pdFALSE;\r
387         }\r
388 \r
389         if( xSuspendedQueueSendError == pdTRUE )\r
390         {\r
391                 xReturn = pdFALSE;\r
392         }\r
393 \r
394         if( xSuspendedQueueReceiveError == pdTRUE )\r
395         {\r
396                 xReturn = pdFALSE;\r
397         }\r
398 \r
399         usLastTaskCheck = usCheckVariable;\r
400         return xReturn;\r
401 }\r