]> git.sur5r.net Git - freertos/blob - FreeRTOS/Demo/Common/Minimal/countsem.c
Kernel changes:
[freertos] / FreeRTOS / Demo / Common / Minimal / countsem.c
1 /*\r
2     FreeRTOS V8.2.3 - Copyright (C) 2015 Real Time Engineers Ltd.\r
3     All rights reserved\r
4 \r
5     VISIT http://www.FreeRTOS.org TO ENSURE YOU ARE USING THE LATEST VERSION.\r
6 \r
7     This file is part of the FreeRTOS distribution.\r
8 \r
9     FreeRTOS is free software; you can redistribute it and/or modify it under\r
10     the terms of the GNU General Public License (version 2) as published by the\r
11     Free Software Foundation >>>> AND MODIFIED BY <<<< the FreeRTOS exception.\r
12 \r
13     ***************************************************************************\r
14     >>!   NOTE: The modification to the GPL is included to allow you to     !<<\r
15     >>!   distribute a combined work that includes FreeRTOS without being   !<<\r
16     >>!   obliged to provide the source code for proprietary components     !<<\r
17     >>!   outside of the FreeRTOS kernel.                                   !<<\r
18     ***************************************************************************\r
19 \r
20     FreeRTOS is distributed in the hope that it will be useful, but WITHOUT ANY\r
21     WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS\r
22     FOR A PARTICULAR PURPOSE.  Full license text is available on the following\r
23     link: http://www.freertos.org/a00114.html\r
24 \r
25     ***************************************************************************\r
26      *                                                                       *\r
27      *    FreeRTOS provides completely free yet professionally developed,    *\r
28      *    robust, strictly quality controlled, supported, and cross          *\r
29      *    platform software that is more than just the market leader, it     *\r
30      *    is the industry's de facto standard.                               *\r
31      *                                                                       *\r
32      *    Help yourself get started quickly while simultaneously helping     *\r
33      *    to support the FreeRTOS project by purchasing a FreeRTOS           *\r
34      *    tutorial book, reference manual, or both:                          *\r
35      *    http://www.FreeRTOS.org/Documentation                              *\r
36      *                                                                       *\r
37     ***************************************************************************\r
38 \r
39     http://www.FreeRTOS.org/FAQHelp.html - Having a problem?  Start by reading\r
40     the FAQ page "My application does not run, what could be wrong?".  Have you\r
41     defined configASSERT()?\r
42 \r
43     http://www.FreeRTOS.org/support - In return for receiving this top quality\r
44     embedded software for free we request you assist our global community by\r
45     participating in the support forum.\r
46 \r
47     http://www.FreeRTOS.org/training - Investing in training allows your team to\r
48     be as productive as possible as early as possible.  Now you can receive\r
49     FreeRTOS training directly from Richard Barry, CEO of Real Time Engineers\r
50     Ltd, and the world's leading authority on the world's leading RTOS.\r
51 \r
52     http://www.FreeRTOS.org/plus - A selection of FreeRTOS ecosystem products,\r
53     including FreeRTOS+Trace - an indispensable productivity tool, a DOS\r
54     compatible FAT file system, and our tiny thread aware UDP/IP stack.\r
55 \r
56     http://www.FreeRTOS.org/labs - Where new FreeRTOS products go to incubate.\r
57     Come and try FreeRTOS+TCP, our new open source TCP/IP stack for FreeRTOS.\r
58 \r
59     http://www.OpenRTOS.com - Real Time Engineers ltd. license FreeRTOS to High\r
60     Integrity Systems ltd. to sell under the OpenRTOS brand.  Low cost OpenRTOS\r
61     licenses offer ticketed support, indemnification and commercial middleware.\r
62 \r
63     http://www.SafeRTOS.com - High Integrity Systems also provide a safety\r
64     engineered and independently SIL3 certified version for use in safety and\r
65     mission critical applications that require provable dependability.\r
66 \r
67     1 tab == 4 spaces!\r
68 */\r
69 \r
70 \r
71 /*\r
72  * Simple demonstration of the usage of counting semaphore.\r
73  */\r
74 \r
75 /* Scheduler include files. */\r
76 #include "FreeRTOS.h"\r
77 #include "task.h"\r
78 #include "semphr.h"\r
79 \r
80 /* Demo program include files. */\r
81 #include "countsem.h"\r
82 \r
83 /* The maximum count value that the semaphore used for the demo can hold. */\r
84 #define countMAX_COUNT_VALUE    ( 200 )\r
85 \r
86 /* Constants used to indicate whether or not the semaphore should have been\r
87 created with its maximum count value, or its minimum count value.  These\r
88 numbers are used to ensure that the pointers passed in as the task parameters\r
89 are valid. */\r
90 #define countSTART_AT_MAX_COUNT ( 0xaa )\r
91 #define countSTART_AT_ZERO              ( 0x55 )\r
92 \r
93 /* Two tasks are created for the test.  One uses a semaphore created with its\r
94 count value set to the maximum, and one with the count value set to zero. */\r
95 #define countNUM_TEST_TASKS             ( 2 )\r
96 #define countDONT_BLOCK                 ( 0 )\r
97 \r
98 /*-----------------------------------------------------------*/\r
99 \r
100 /* Flag that will be latched to pdTRUE should any unexpected behaviour be\r
101 detected in any of the tasks. */\r
102 static volatile BaseType_t xErrorDetected = pdFALSE;\r
103 \r
104 /*-----------------------------------------------------------*/\r
105 \r
106 /*\r
107  * The demo task.  This simply counts the semaphore up to its maximum value,\r
108  * the counts it back down again.  The result of each semaphore 'give' and\r
109  * 'take' is inspected, with an error being flagged if it is found not to be\r
110  * the expected result.\r
111  */\r
112 static void prvCountingSemaphoreTask( void *pvParameters );\r
113 \r
114 /*\r
115  * Utility function to increment the semaphore count value up from zero to\r
116  * countMAX_COUNT_VALUE.\r
117  */\r
118 static void prvIncrementSemaphoreCount( SemaphoreHandle_t xSemaphore, UBaseType_t *puxLoopCounter );\r
119 \r
120 /*\r
121  * Utility function to decrement the semaphore count value up from\r
122  * countMAX_COUNT_VALUE to zero.\r
123  */\r
124 static void prvDecrementSemaphoreCount( SemaphoreHandle_t xSemaphore, UBaseType_t *puxLoopCounter );\r
125 \r
126 /*-----------------------------------------------------------*/\r
127 \r
128 /* The structure that is passed into the task as the task parameter. */\r
129 typedef struct COUNT_SEM_STRUCT\r
130 {\r
131         /* The semaphore to be used for the demo. */\r
132         SemaphoreHandle_t xSemaphore;\r
133 \r
134         /* Set to countSTART_AT_MAX_COUNT if the semaphore should be created with\r
135         its count value set to its max count value, or countSTART_AT_ZERO if it\r
136         should have been created with its count value set to 0. */\r
137         UBaseType_t uxExpectedStartCount;\r
138 \r
139         /* Incremented on each cycle of the demo task.  Used to detect a stalled\r
140         task. */\r
141         UBaseType_t uxLoopCounter;\r
142 } xCountSemStruct;\r
143 \r
144 /* Two structures are defined, one is passed to each test task. */\r
145 static volatile xCountSemStruct xParameters[ countNUM_TEST_TASKS ];\r
146 \r
147 /*-----------------------------------------------------------*/\r
148 \r
149 void vStartCountingSemaphoreTasks( void )\r
150 {\r
151         /* Create the semaphores that we are going to use for the test/demo.  The\r
152         first should be created such that it starts at its maximum count value,\r
153         the second should be created such that it starts with a count value of zero. */\r
154         xParameters[ 0 ].xSemaphore = xSemaphoreCreateCounting( countMAX_COUNT_VALUE, countMAX_COUNT_VALUE );\r
155         xParameters[ 0 ].uxExpectedStartCount = countSTART_AT_MAX_COUNT;\r
156         xParameters[ 0 ].uxLoopCounter = 0;\r
157 \r
158         xParameters[ 1 ].xSemaphore = xSemaphoreCreateCounting( countMAX_COUNT_VALUE, 0 );\r
159         xParameters[ 1 ].uxExpectedStartCount = 0;\r
160         xParameters[ 1 ].uxLoopCounter = 0;\r
161 \r
162         /* vQueueAddToRegistry() adds the semaphore to the registry, if one is\r
163         in use.  The registry is provided as a means for kernel aware\r
164         debuggers to locate semaphores and has no purpose if a kernel aware debugger\r
165         is not being used.  The call to vQueueAddToRegistry() will be removed\r
166         by the pre-processor if configQUEUE_REGISTRY_SIZE is not defined or is\r
167         defined to be less than 1. */\r
168         vQueueAddToRegistry( ( QueueHandle_t ) xParameters[ 0 ].xSemaphore, "Counting_Sem_1" );\r
169         vQueueAddToRegistry( ( QueueHandle_t ) xParameters[ 1 ].xSemaphore, "Counting_Sem_2" );\r
170 \r
171 \r
172         /* Were the semaphores created? */\r
173         if( ( xParameters[ 0 ].xSemaphore != NULL ) || ( xParameters[ 1 ].xSemaphore != NULL ) )\r
174         {\r
175                 /* Create the demo tasks, passing in the semaphore to use as the parameter. */\r
176                 xTaskCreate( prvCountingSemaphoreTask, "CNT1", configMINIMAL_STACK_SIZE, ( void * ) &( xParameters[ 0 ] ), tskIDLE_PRIORITY, NULL );\r
177                 xTaskCreate( prvCountingSemaphoreTask, "CNT2", configMINIMAL_STACK_SIZE, ( void * ) &( xParameters[ 1 ] ), tskIDLE_PRIORITY, NULL );\r
178         }\r
179 }\r
180 /*-----------------------------------------------------------*/\r
181 \r
182 static void prvDecrementSemaphoreCount( SemaphoreHandle_t xSemaphore, UBaseType_t *puxLoopCounter )\r
183 {\r
184 UBaseType_t ux;\r
185 \r
186         /* If the semaphore count is at its maximum then we should not be able to\r
187         'give' the semaphore. */\r
188         if( xSemaphoreGive( xSemaphore ) == pdPASS )\r
189         {\r
190                 xErrorDetected = pdTRUE;\r
191         }\r
192 \r
193         /* We should be able to 'take' the semaphore countMAX_COUNT_VALUE times. */\r
194         for( ux = 0; ux < countMAX_COUNT_VALUE; ux++ )\r
195         {\r
196                 configASSERT( xSemaphoreGetCount( xSemaphore ) == ( countMAX_COUNT_VALUE - ux ) );\r
197 \r
198                 if( xSemaphoreTake( xSemaphore, countDONT_BLOCK ) != pdPASS )\r
199                 {\r
200                         /* We expected to be able to take the semaphore. */\r
201                         xErrorDetected = pdTRUE;\r
202                 }\r
203 \r
204                 ( *puxLoopCounter )++;\r
205         }\r
206 \r
207         #if configUSE_PREEMPTION == 0\r
208                 taskYIELD();\r
209         #endif\r
210 \r
211         /* If the semaphore count is zero then we should not be able to 'take'\r
212         the semaphore. */\r
213         configASSERT( xSemaphoreGetCount( xSemaphore ) == 0 );\r
214         if( xSemaphoreTake( xSemaphore, countDONT_BLOCK ) == pdPASS )\r
215         {\r
216                 xErrorDetected = pdTRUE;\r
217         }\r
218 }\r
219 /*-----------------------------------------------------------*/\r
220 \r
221 static void prvIncrementSemaphoreCount( SemaphoreHandle_t xSemaphore, UBaseType_t *puxLoopCounter )\r
222 {\r
223 UBaseType_t ux;\r
224 \r
225         /* If the semaphore count is zero then we should not be able to 'take'\r
226         the semaphore. */\r
227         if( xSemaphoreTake( xSemaphore, countDONT_BLOCK ) == pdPASS )\r
228         {\r
229                 xErrorDetected = pdTRUE;\r
230         }\r
231 \r
232         /* We should be able to 'give' the semaphore countMAX_COUNT_VALUE times. */\r
233         for( ux = 0; ux < countMAX_COUNT_VALUE; ux++ )\r
234         {\r
235                 configASSERT( xSemaphoreGetCount( xSemaphore ) == ux );\r
236 \r
237                 if( xSemaphoreGive( xSemaphore ) != pdPASS )\r
238                 {\r
239                         /* We expected to be able to take the semaphore. */\r
240                         xErrorDetected = pdTRUE;\r
241                 }\r
242 \r
243                 ( *puxLoopCounter )++;\r
244         }\r
245 \r
246         #if configUSE_PREEMPTION == 0\r
247                 taskYIELD();\r
248         #endif\r
249 \r
250         /* If the semaphore count is at its maximum then we should not be able to\r
251         'give' the semaphore. */\r
252         if( xSemaphoreGive( xSemaphore ) == pdPASS )\r
253         {\r
254                 xErrorDetected = pdTRUE;\r
255         }\r
256 }\r
257 /*-----------------------------------------------------------*/\r
258 \r
259 static void prvCountingSemaphoreTask( void *pvParameters )\r
260 {\r
261 xCountSemStruct *pxParameter;\r
262 \r
263         #ifdef USE_STDIO\r
264         void vPrintDisplayMessage( const char * const * ppcMessageToSend );\r
265 \r
266                 const char * const pcTaskStartMsg = "Counting semaphore demo started.\r\n";\r
267 \r
268                 /* Queue a message for printing to say the task has started. */\r
269                 vPrintDisplayMessage( &pcTaskStartMsg );\r
270         #endif\r
271 \r
272         /* The semaphore to be used was passed as the parameter. */\r
273         pxParameter = ( xCountSemStruct * ) pvParameters;\r
274 \r
275         /* Did we expect to find the semaphore already at its max count value, or\r
276         at zero? */\r
277         if( pxParameter->uxExpectedStartCount == countSTART_AT_MAX_COUNT )\r
278         {\r
279                 prvDecrementSemaphoreCount( pxParameter->xSemaphore, &( pxParameter->uxLoopCounter ) );\r
280         }\r
281 \r
282         /* Now we expect the semaphore count to be 0, so this time there is an\r
283         error if we can take the semaphore. */\r
284         if( xSemaphoreTake( pxParameter->xSemaphore, 0 ) == pdPASS )\r
285         {\r
286                 xErrorDetected = pdTRUE;\r
287         }\r
288 \r
289         for( ;; )\r
290         {\r
291                 prvIncrementSemaphoreCount( pxParameter->xSemaphore, &( pxParameter->uxLoopCounter ) );\r
292                 prvDecrementSemaphoreCount( pxParameter->xSemaphore, &( pxParameter->uxLoopCounter ) );\r
293         }\r
294 }\r
295 /*-----------------------------------------------------------*/\r
296 \r
297 BaseType_t xAreCountingSemaphoreTasksStillRunning( void )\r
298 {\r
299 static UBaseType_t uxLastCount0 = 0, uxLastCount1 = 0;\r
300 BaseType_t xReturn = pdPASS;\r
301 \r
302         /* Return fail if any 'give' or 'take' did not result in the expected\r
303         behaviour. */\r
304         if( xErrorDetected != pdFALSE )\r
305         {\r
306                 xReturn = pdFAIL;\r
307         }\r
308 \r
309         /* Return fail if either task is not still incrementing its loop counter. */\r
310         if( uxLastCount0 == xParameters[ 0 ].uxLoopCounter )\r
311         {\r
312                 xReturn = pdFAIL;\r
313         }\r
314         else\r
315         {\r
316                 uxLastCount0 = xParameters[ 0 ].uxLoopCounter;\r
317         }\r
318 \r
319         if( uxLastCount1 == xParameters[ 1 ].uxLoopCounter )\r
320         {\r
321                 xReturn = pdFAIL;\r
322         }\r
323         else\r
324         {\r
325                 uxLastCount1 = xParameters[ 1 ].uxLoopCounter;\r
326         }\r
327 \r
328         return xReturn;\r
329 }\r
330 \r
331 \r