]> git.sur5r.net Git - freertos/blob - Demo/Common/Minimal/BlockQ.c
Update to V4.4.0.
[freertos] / Demo / Common / Minimal / BlockQ.c
1 /*\r
2         FreeRTOS.org V4.4.0 - Copyright (C) 2003-2007 Richard Barry.\r
3 \r
4         This file is part of the FreeRTOS.org distribution.\r
5 \r
6         FreeRTOS.org is free software; you can redistribute it and/or modify\r
7         it under the terms of the GNU General Public License as published by\r
8         the Free Software Foundation; either version 2 of the License, or\r
9         (at your option) any later version.\r
10 \r
11         FreeRTOS.org is distributed in the hope that it will be useful,\r
12         but WITHOUT ANY WARRANTY; without even the implied warranty of\r
13         MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\r
14         GNU General Public License for more details.\r
15 \r
16         You should have received a copy of the GNU General Public License\r
17         along with FreeRTOS.org; if not, write to the Free Software\r
18         Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA\r
19 \r
20         A special exception to the GPL can be applied should you wish to distribute\r
21         a combined work that includes FreeRTOS.org, without being obliged to provide\r
22         the source code for any proprietary components.  See the licensing section\r
23         of http://www.FreeRTOS.org for full details of how and when the exception\r
24         can be applied.\r
25 \r
26         ***************************************************************************\r
27         See http://www.FreeRTOS.org for documentation, latest information, license\r
28         and contact details.  Please ensure to read the configuration and relevant\r
29         port sections of the online documentation.\r
30 \r
31         Also see http://www.SafeRTOS.com for an IEC 61508 compliant version along\r
32         with commercial development and support options.\r
33         ***************************************************************************\r
34 */\r
35 \r
36 /*\r
37  * Creates six tasks that operate on three queues as follows:\r
38  *\r
39  * The first two tasks send and receive an incrementing number to/from a queue.\r
40  * One task acts as a producer and the other as the consumer.  The consumer is a\r
41  * higher priority than the producer and is set to block on queue reads.  The queue\r
42  * only has space for one item - as soon as the producer posts a message on the\r
43  * queue the consumer will unblock, pre-empt the producer, and remove the item.\r
44  *\r
45  * The second two tasks work the other way around.  Again the queue used only has\r
46  * enough space for one item.  This time the consumer has a lower priority than the\r
47  * producer.  The producer will try to post on the queue blocking when the queue is\r
48  * full.  When the consumer wakes it will remove the item from the queue, causing\r
49  * the producer to unblock, pre-empt the consumer, and immediately re-fill the\r
50  * queue.\r
51  *\r
52  * The last two tasks use the same queue producer and consumer functions.  This time the queue has\r
53  * enough space for lots of items and the tasks operate at the same priority.  The\r
54  * producer will execute, placing items into the queue.  The consumer will start\r
55  * executing when either the queue becomes full (causing the producer to block) or\r
56  * a context switch occurs (tasks of the same priority will time slice).\r
57  *\r
58  */\r
59 \r
60 /* \r
61 \r
62 Changes from V4.1.1\r
63 \r
64         + The second set of tasks were created the wrong way around.  This has been\r
65           corrected.\r
66 */\r
67 \r
68 \r
69 #include <stdlib.h>\r
70 \r
71 /* Scheduler include files. */\r
72 #include "FreeRTOS.h"\r
73 #include "task.h"\r
74 #include "queue.h"\r
75 \r
76 /* Demo program include files. */\r
77 #include "BlockQ.h"\r
78 \r
79 #define blckqSTACK_SIZE         configMINIMAL_STACK_SIZE\r
80 #define blckqNUM_TASK_SETS      ( 3 )\r
81 \r
82 /* Structure used to pass parameters to the blocking queue tasks. */\r
83 typedef struct BLOCKING_QUEUE_PARAMETERS\r
84 {\r
85         xQueueHandle xQueue;                                    /*< The queue to be used by the task. */\r
86         portTickType xBlockTime;                                /*< The block time to use on queue reads/writes. */\r
87         volatile portSHORT *psCheckVariable;    /*< Incremented on each successful cycle to check the task is still running. */\r
88 } xBlockingQueueParameters;\r
89 \r
90 /* Task function that creates an incrementing number and posts it on a queue. */\r
91 static portTASK_FUNCTION_PROTO( vBlockingQueueProducer, pvParameters );\r
92 \r
93 /* Task function that removes the incrementing number from a queue and checks that\r
94 it is the expected number. */\r
95 static portTASK_FUNCTION_PROTO( vBlockingQueueConsumer, pvParameters );\r
96 \r
97 /* Variables which are incremented each time an item is removed from a queue, and\r
98 found to be the expected value.\r
99 These are used to check that the tasks are still running. */\r
100 static volatile portSHORT sBlockingConsumerCount[ blckqNUM_TASK_SETS ] = { ( unsigned portSHORT ) 0, ( unsigned portSHORT ) 0, ( unsigned portSHORT ) 0 };\r
101 \r
102 /* Variable which are incremented each time an item is posted on a queue.   These\r
103 are used to check that the tasks are still running. */\r
104 static volatile portSHORT sBlockingProducerCount[ blckqNUM_TASK_SETS ] = { ( unsigned portSHORT ) 0, ( unsigned portSHORT ) 0, ( unsigned portSHORT ) 0 };\r
105 \r
106 /*-----------------------------------------------------------*/\r
107 \r
108 void vStartBlockingQueueTasks( unsigned portBASE_TYPE uxPriority )\r
109 {\r
110 xBlockingQueueParameters *pxQueueParameters1, *pxQueueParameters2;\r
111 xBlockingQueueParameters *pxQueueParameters3, *pxQueueParameters4;\r
112 xBlockingQueueParameters *pxQueueParameters5, *pxQueueParameters6;\r
113 const unsigned portBASE_TYPE uxQueueSize1 = 1, uxQueueSize5 = 5;\r
114 const portTickType xBlockTime = ( portTickType ) 1000 / portTICK_RATE_MS;\r
115 const portTickType xDontBlock = ( portTickType ) 0;\r
116 \r
117         /* Create the first two tasks as described at the top of the file. */\r
118         \r
119         /* First create the structure used to pass parameters to the consumer tasks. */\r
120         pxQueueParameters1 = ( xBlockingQueueParameters * ) pvPortMalloc( sizeof( xBlockingQueueParameters ) );\r
121 \r
122         /* Create the queue used by the first two tasks to pass the incrementing number.\r
123         Pass a pointer to the queue in the parameter structure. */\r
124         pxQueueParameters1->xQueue = xQueueCreate( uxQueueSize1, ( unsigned portBASE_TYPE ) sizeof( unsigned portSHORT ) );\r
125 \r
126         /* The consumer is created first so gets a block time as described above. */\r
127         pxQueueParameters1->xBlockTime = xBlockTime;\r
128 \r
129         /* Pass in the variable that this task is going to increment so we can check it\r
130         is still running. */\r
131         pxQueueParameters1->psCheckVariable = &( sBlockingConsumerCount[ 0 ] );\r
132                 \r
133         /* Create the structure used to pass parameters to the producer task. */\r
134         pxQueueParameters2 = ( xBlockingQueueParameters * ) pvPortMalloc( sizeof( xBlockingQueueParameters ) );\r
135 \r
136         /* Pass the queue to this task also, using the parameter structure. */\r
137         pxQueueParameters2->xQueue = pxQueueParameters1->xQueue;\r
138 \r
139         /* The producer is not going to block - as soon as it posts the consumer will\r
140         wake and remove the item so the producer should always have room to post. */\r
141         pxQueueParameters2->xBlockTime = xDontBlock;\r
142 \r
143         /* Pass in the variable that this task is going to increment so we can check\r
144         it is still running. */\r
145         pxQueueParameters2->psCheckVariable = &( sBlockingProducerCount[ 0 ] );\r
146 \r
147 \r
148         /* Note the producer has a lower priority than the consumer when the tasks are\r
149         spawned. */\r
150         xTaskCreate( vBlockingQueueConsumer, ( signed portCHAR * ) "QConsB1", blckqSTACK_SIZE, ( void * ) pxQueueParameters1, uxPriority, NULL );\r
151         xTaskCreate( vBlockingQueueProducer, ( signed portCHAR * ) "QProdB2", blckqSTACK_SIZE, ( void * ) pxQueueParameters2, tskIDLE_PRIORITY, NULL );\r
152 \r
153         \r
154 \r
155         /* Create the second two tasks as described at the top of the file.   This uses\r
156         the same mechanism but reverses the task priorities. */\r
157 \r
158         pxQueueParameters3 = ( xBlockingQueueParameters * ) pvPortMalloc( sizeof( xBlockingQueueParameters ) );\r
159         pxQueueParameters3->xQueue = xQueueCreate( uxQueueSize1, ( unsigned portBASE_TYPE ) sizeof( unsigned portSHORT ) );\r
160         pxQueueParameters3->xBlockTime = xDontBlock;\r
161         pxQueueParameters3->psCheckVariable = &( sBlockingProducerCount[ 1 ] );\r
162 \r
163         pxQueueParameters4 = ( xBlockingQueueParameters * ) pvPortMalloc( sizeof( xBlockingQueueParameters ) );\r
164         pxQueueParameters4->xQueue = pxQueueParameters3->xQueue;\r
165         pxQueueParameters4->xBlockTime = xBlockTime;\r
166         pxQueueParameters4->psCheckVariable = &( sBlockingConsumerCount[ 1 ] );\r
167 \r
168         xTaskCreate( vBlockingQueueConsumer, ( signed portCHAR * ) "QProdB3", blckqSTACK_SIZE, ( void * ) pxQueueParameters3, tskIDLE_PRIORITY, NULL );\r
169         xTaskCreate( vBlockingQueueProducer, ( signed portCHAR * ) "QConsB4", blckqSTACK_SIZE, ( void * ) pxQueueParameters4, uxPriority, NULL );\r
170 \r
171 \r
172 \r
173         /* Create the last two tasks as described above.  The mechanism is again just\r
174         the same.  This time both parameter structures are given a block time. */\r
175         pxQueueParameters5 = ( xBlockingQueueParameters * ) pvPortMalloc( sizeof( xBlockingQueueParameters ) );\r
176         pxQueueParameters5->xQueue = xQueueCreate( uxQueueSize5, ( unsigned portBASE_TYPE ) sizeof( unsigned portSHORT ) );\r
177         pxQueueParameters5->xBlockTime = xBlockTime;\r
178         pxQueueParameters5->psCheckVariable = &( sBlockingProducerCount[ 2 ] );\r
179 \r
180         pxQueueParameters6 = ( xBlockingQueueParameters * ) pvPortMalloc( sizeof( xBlockingQueueParameters ) );\r
181         pxQueueParameters6->xQueue = pxQueueParameters5->xQueue;\r
182         pxQueueParameters6->xBlockTime = xBlockTime;\r
183         pxQueueParameters6->psCheckVariable = &( sBlockingConsumerCount[ 2 ] ); \r
184 \r
185         xTaskCreate( vBlockingQueueProducer, ( signed portCHAR * ) "QProdB5", blckqSTACK_SIZE, ( void * ) pxQueueParameters5, tskIDLE_PRIORITY, NULL );\r
186         xTaskCreate( vBlockingQueueConsumer, ( signed portCHAR * ) "QConsB6", blckqSTACK_SIZE, ( void * ) pxQueueParameters6, tskIDLE_PRIORITY, NULL );\r
187 }\r
188 /*-----------------------------------------------------------*/\r
189 \r
190 static portTASK_FUNCTION( vBlockingQueueProducer, pvParameters )\r
191 {\r
192 unsigned portSHORT usValue = 0;\r
193 xBlockingQueueParameters *pxQueueParameters;\r
194 portSHORT sErrorEverOccurred = pdFALSE;\r
195 \r
196         pxQueueParameters = ( xBlockingQueueParameters * ) pvParameters;\r
197 \r
198         for( ;; )\r
199         {               \r
200                 if( xQueueSend( pxQueueParameters->xQueue, ( void * ) &usValue, pxQueueParameters->xBlockTime ) != pdPASS )\r
201                 {\r
202                         sErrorEverOccurred = pdTRUE;\r
203                 }\r
204                 else\r
205                 {\r
206                         /* We have successfully posted a message, so increment the variable\r
207                         used to check we are still running. */\r
208                         if( sErrorEverOccurred == pdFALSE )\r
209                         {\r
210                                 ( *pxQueueParameters->psCheckVariable )++;\r
211                         }\r
212 \r
213                         /* Increment the variable we are going to post next time round.  The\r
214                         consumer will expect the numbers to     follow in numerical order. */\r
215                         ++usValue;\r
216                 }\r
217         }\r
218 }\r
219 /*-----------------------------------------------------------*/\r
220 \r
221 static portTASK_FUNCTION( vBlockingQueueConsumer, pvParameters )\r
222 {\r
223 unsigned portSHORT usData, usExpectedValue = 0;\r
224 xBlockingQueueParameters *pxQueueParameters;\r
225 portSHORT sErrorEverOccurred = pdFALSE;\r
226 \r
227         pxQueueParameters = ( xBlockingQueueParameters * ) pvParameters;\r
228 \r
229         for( ;; )\r
230         {       \r
231                 if( xQueueReceive( pxQueueParameters->xQueue, &usData, pxQueueParameters->xBlockTime ) == pdPASS )\r
232                 {\r
233                         if( usData != usExpectedValue )\r
234                         {\r
235                                 /* Catch-up. */\r
236                                 usExpectedValue = usData;\r
237 \r
238                                 sErrorEverOccurred = pdTRUE;\r
239                         }\r
240                         else\r
241                         {\r
242                                 /* We have successfully received a message, so increment the\r
243                                 variable used to check we are still running. */ \r
244                                 if( sErrorEverOccurred == pdFALSE )\r
245                                 {\r
246                                         ( *pxQueueParameters->psCheckVariable )++;\r
247                                 }\r
248                                                         \r
249                                 /* Increment the value we expect to remove from the queue next time\r
250                                 round. */\r
251                                 ++usExpectedValue;\r
252                         }                       \r
253                 }               \r
254         }\r
255 }\r
256 /*-----------------------------------------------------------*/\r
257 \r
258 /* This is called to check that all the created tasks are still running. */\r
259 portBASE_TYPE xAreBlockingQueuesStillRunning( void )\r
260 {\r
261 static portSHORT sLastBlockingConsumerCount[ blckqNUM_TASK_SETS ] = { ( unsigned portSHORT ) 0, ( unsigned portSHORT ) 0, ( unsigned portSHORT ) 0 };\r
262 static portSHORT sLastBlockingProducerCount[ blckqNUM_TASK_SETS ] = { ( unsigned portSHORT ) 0, ( unsigned portSHORT ) 0, ( unsigned portSHORT ) 0 };\r
263 portBASE_TYPE xReturn = pdPASS, xTasks;\r
264 \r
265         /* Not too worried about mutual exclusion on these variables as they are 16\r
266         bits and we are only reading them. We also only care to see if they have\r
267         changed or not.\r
268         \r
269         Loop through each check variable to and return pdFALSE if any are found not\r
270         to have changed since the last call. */\r
271 \r
272         for( xTasks = 0; xTasks < blckqNUM_TASK_SETS; xTasks++ )\r
273         {\r
274                 if( sBlockingConsumerCount[ xTasks ] == sLastBlockingConsumerCount[ xTasks ]  )\r
275                 {\r
276                         xReturn = pdFALSE;\r
277                 }\r
278                 sLastBlockingConsumerCount[ xTasks ] = sBlockingConsumerCount[ xTasks ];\r
279 \r
280 \r
281                 if( sBlockingProducerCount[ xTasks ] == sLastBlockingProducerCount[ xTasks ]  )\r
282                 {\r
283                         xReturn = pdFALSE;\r
284                 }\r
285                 sLastBlockingProducerCount[ xTasks ] = sBlockingProducerCount[ xTasks ];\r
286         }\r
287 \r
288         return xReturn;\r
289 }\r
290 \r