]> git.sur5r.net Git - freertos/blob - Demo/Common/Minimal/crflash.c
Add volatile qualifier to loop counters used to detect stalled tasks.
[freertos] / Demo / Common / Minimal / crflash.c
1 /*\r
2         FreeRTOS.org V5.0.0 - Copyright (C) 2003-2008 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     ***************************************************************************\r
28     *                                                                         *\r
29     * SAVE TIME AND MONEY!  We can port FreeRTOS.org to your own hardware,    *\r
30     * and even write all or part of your application on your behalf.          *\r
31     * See http://www.OpenRTOS.com for details of the services we provide to   *\r
32     * expedite your project.                                                  *\r
33     *                                                                         *\r
34     ***************************************************************************\r
35     ***************************************************************************\r
36 \r
37         Please ensure to read the configuration and relevant port sections of the\r
38         online documentation.\r
39 \r
40         http://www.FreeRTOS.org - Documentation, latest information, license and \r
41         contact details.\r
42 \r
43         http://www.SafeRTOS.com - A version that is certified for use in safety \r
44         critical systems.\r
45 \r
46         http://www.OpenRTOS.com - Commercial support, development, porting, \r
47         licensing and training services.\r
48 */\r
49 \r
50 /*\r
51  * This demo application file demonstrates the use of queues to pass data\r
52  * between co-routines.\r
53  *\r
54  * N represents the number of 'fixed delay' co-routines that are created and\r
55  * is set during initialisation.\r
56  *\r
57  * N 'fixed delay' co-routines are created that just block for a fixed\r
58  * period then post the number of an LED onto a queue.  Each such co-routine\r
59  * uses a different block period.  A single 'flash' co-routine is also created\r
60  * that blocks on the same queue, waiting for the number of the next LED it\r
61  * should flash.  Upon receiving a number it simply toggle the instructed LED\r
62  * then blocks on the queue once more.  In this manner each LED from LED 0 to\r
63  * LED N-1 is caused to flash at a different rate.\r
64  *\r
65  * The 'fixed delay' co-routines are created with co-routine priority 0.  The\r
66  * flash co-routine is created with co-routine priority 1.  This means that\r
67  * the queue should never contain more than a single item.  This is because\r
68  * posting to the queue will unblock the 'flash' co-routine, and as this has\r
69  * a priority greater than the tasks posting to the queue it is guaranteed to\r
70  * have emptied the queue and blocked once again before the queue can contain\r
71  * any more date.  An error is indicated if an attempt to post data to the\r
72  * queue fails - indicating that the queue is already full.\r
73  *\r
74  */\r
75 \r
76 /* Scheduler includes. */\r
77 #include "FreeRTOS.h"\r
78 #include "croutine.h"\r
79 #include "queue.h"\r
80 \r
81 /* Demo application includes. */\r
82 #include "partest.h"\r
83 #include "crflash.h"\r
84 \r
85 /* The queue should only need to be of length 1.  See the description at the\r
86 top of the file. */\r
87 #define crfQUEUE_LENGTH         1\r
88 \r
89 #define crfFIXED_DELAY_PRIORITY         0\r
90 #define crfFLASH_PRIORITY                       1\r
91 \r
92 /* Only one flash co-routine is created so the index is not significant. */\r
93 #define crfFLASH_INDEX                          0\r
94 \r
95 /* Don't allow more than crfMAX_FLASH_TASKS 'fixed delay' co-routines to be\r
96 created. */\r
97 #define crfMAX_FLASH_TASKS                      8\r
98 \r
99 /* We don't want to block when posting to the queue. */\r
100 #define crfPOSTING_BLOCK_TIME           0\r
101 \r
102 /*\r
103  * The 'fixed delay' co-routine as described at the top of the file.\r
104  */\r
105 static void prvFixedDelayCoRoutine( xCoRoutineHandle xHandle, unsigned portBASE_TYPE uxIndex );\r
106 \r
107 /*\r
108  * The 'flash' co-routine as described at the top of the file.\r
109  */\r
110 static void prvFlashCoRoutine( xCoRoutineHandle xHandle, unsigned portBASE_TYPE uxIndex );\r
111 \r
112 /* The queue used to pass data between the 'fixed delay' co-routines and the\r
113 'flash' co-routine. */\r
114 static xQueueHandle xFlashQueue;\r
115 \r
116 /* This will be set to pdFALSE if we detect an error. */\r
117 static unsigned portBASE_TYPE uxCoRoutineFlashStatus = pdPASS;\r
118 \r
119 /*-----------------------------------------------------------*/\r
120 \r
121 /*\r
122  * See the header file for details.\r
123  */\r
124 void vStartFlashCoRoutines( unsigned portBASE_TYPE uxNumberToCreate )\r
125 {\r
126 unsigned portBASE_TYPE uxIndex;\r
127 \r
128         if( uxNumberToCreate > crfMAX_FLASH_TASKS )\r
129         {\r
130                 uxNumberToCreate = crfMAX_FLASH_TASKS;\r
131         }\r
132 \r
133         /* Create the queue used to pass data between the co-routines. */\r
134         xFlashQueue = xQueueCreate( crfQUEUE_LENGTH, sizeof( unsigned portBASE_TYPE ) );\r
135 \r
136         if( xFlashQueue )\r
137         {\r
138                 /* Create uxNumberToCreate 'fixed delay' co-routines. */\r
139                 for( uxIndex = 0; uxIndex < uxNumberToCreate; uxIndex++ )\r
140                 {\r
141                         xCoRoutineCreate( prvFixedDelayCoRoutine, crfFIXED_DELAY_PRIORITY, uxIndex );\r
142                 }\r
143 \r
144                 /* Create the 'flash' co-routine. */\r
145                 xCoRoutineCreate( prvFlashCoRoutine, crfFLASH_PRIORITY, crfFLASH_INDEX );\r
146         }\r
147 }\r
148 /*-----------------------------------------------------------*/\r
149 \r
150 static void prvFixedDelayCoRoutine( xCoRoutineHandle xHandle, unsigned portBASE_TYPE uxIndex )\r
151 {\r
152 /* Even though this is a co-routine the xResult variable does not need to be\r
153 static as we do not need it to maintain its state between blocks. */\r
154 signed portBASE_TYPE xResult;\r
155 /* The uxIndex parameter of the co-routine function is used as an index into\r
156 the xFlashRates array to obtain the delay period to use. */\r
157 static const portTickType xFlashRates[ crfMAX_FLASH_TASKS ] = { 150 / portTICK_RATE_MS,\r
158                                                                                                                                 200 / portTICK_RATE_MS,\r
159                                                                                                                                 250 / portTICK_RATE_MS,\r
160                                                                                                                                 300 / portTICK_RATE_MS,\r
161                                                                                                                                 350 / portTICK_RATE_MS,\r
162                                                                                                                                 400 / portTICK_RATE_MS,\r
163                                                                                                                                 450 / portTICK_RATE_MS,\r
164                                                                                                                                 500  / portTICK_RATE_MS };\r
165 \r
166         /* Co-routines MUST start with a call to crSTART. */\r
167         crSTART( xHandle );\r
168 \r
169         for( ;; )\r
170         {\r
171                 /* Post our uxIndex value onto the queue.  This is used as the LED to\r
172                 flash. */\r
173                 crQUEUE_SEND( xHandle, xFlashQueue, ( void * ) &uxIndex, crfPOSTING_BLOCK_TIME, &xResult );\r
174 \r
175                 if( xResult != pdPASS )\r
176                 {\r
177                         /* For the reasons stated at the top of the file we should always\r
178                         find that we can post to the queue.  If we could not then an error\r
179                         has occurred. */\r
180                         uxCoRoutineFlashStatus = pdFAIL;\r
181                 }\r
182 \r
183                 crDELAY( xHandle, xFlashRates[ uxIndex ] );\r
184         }\r
185 \r
186         /* Co-routines MUST end with a call to crEND. */\r
187         crEND();\r
188 }\r
189 /*-----------------------------------------------------------*/\r
190 \r
191 static void prvFlashCoRoutine( xCoRoutineHandle xHandle, unsigned portBASE_TYPE uxIndex )\r
192 {\r
193 /* Even though this is a co-routine the variable do not need to be\r
194 static as we do not need it to maintain their state between blocks. */\r
195 signed portBASE_TYPE xResult;\r
196 unsigned portBASE_TYPE uxLEDToFlash;\r
197 \r
198         /* Co-routines MUST start with a call to crSTART. */\r
199         crSTART( xHandle );\r
200         ( void ) uxIndex;\r
201         \r
202         for( ;; )\r
203         {\r
204                 /* Block to wait for the number of the LED to flash. */\r
205                 crQUEUE_RECEIVE( xHandle, xFlashQueue, &uxLEDToFlash, portMAX_DELAY, &xResult );                \r
206 \r
207                 if( xResult != pdPASS )\r
208                 {\r
209                         /* We would not expect to wake unless we received something. */\r
210                         uxCoRoutineFlashStatus = pdFAIL;\r
211                 }\r
212                 else\r
213                 {\r
214                         /* We received the number of an LED to flash - flash it! */\r
215                         vParTestToggleLED( uxLEDToFlash );\r
216                 }\r
217         }\r
218 \r
219         /* Co-routines MUST end with a call to crEND. */\r
220         crEND();\r
221 }\r
222 /*-----------------------------------------------------------*/\r
223 \r
224 portBASE_TYPE xAreFlashCoRoutinesStillRunning( void )\r
225 {\r
226         /* Return pdPASS or pdFAIL depending on whether an error has been detected\r
227         or not. */\r
228         return uxCoRoutineFlashStatus;\r
229 }\r
230 \r