]> git.sur5r.net Git - freertos/blob
65fdc48e082be282a857ca7f186d5baef71b04fd
[freertos] /
1 /*\r
2     FreeRTOS V7.0.1 - Copyright (C) 2011 Real Time Engineers Ltd.\r
3         \r
4 \r
5         FreeRTOS supports many tools and architectures. V7.0.0 is sponsored by:\r
6         Atollic AB - Atollic provides professional embedded systems development \r
7         tools for C/C++ development, code analysis and test automation.  \r
8         See http://www.atollic.com\r
9         \r
10 \r
11     ***************************************************************************\r
12      *                                                                       *\r
13      *    FreeRTOS tutorial books are available in pdf and paperback.        *\r
14      *    Complete, revised, and edited pdf reference manuals are also       *\r
15      *    available.                                                         *\r
16      *                                                                       *\r
17      *    Purchasing FreeRTOS documentation will not only help you, by       *\r
18      *    ensuring you get running as quickly as possible and with an        *\r
19      *    in-depth knowledge of how to use FreeRTOS, it will also help       *\r
20      *    the FreeRTOS project to continue with its mission of providing     *\r
21      *    professional grade, cross platform, de facto standard solutions    *\r
22      *    for microcontrollers - completely free of charge!                  *\r
23      *                                                                       *\r
24      *    >>> See http://www.FreeRTOS.org/Documentation for details. <<<     *\r
25      *                                                                       *\r
26      *    Thank you for using FreeRTOS, and thank you for your support!      *\r
27      *                                                                       *\r
28     ***************************************************************************\r
29 \r
30 \r
31     This file is part of the FreeRTOS distribution.\r
32 \r
33     FreeRTOS is free software; you can redistribute it and/or modify it under\r
34     the terms of the GNU General Public License (version 2) as published by the\r
35     Free Software Foundation AND MODIFIED BY the FreeRTOS exception.\r
36     >>>NOTE<<< The modification to the GPL is included to allow you to\r
37     distribute a combined work that includes FreeRTOS without being obliged to\r
38     provide the source code for proprietary components outside of the FreeRTOS\r
39     kernel.  FreeRTOS is distributed in the hope that it will be useful, but\r
40     WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY\r
41     or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for\r
42     more details. You should have received a copy of the GNU General Public\r
43     License and the FreeRTOS license exception along with FreeRTOS; if not it\r
44     can be viewed here: http://www.freertos.org/a00114.html and also obtained\r
45     by writing to Richard Barry, contact details for whom are available on the\r
46     FreeRTOS WEB site.\r
47 \r
48     1 tab == 4 spaces!\r
49 \r
50     http://www.FreeRTOS.org - Documentation, latest information, license and\r
51     contact details.\r
52 \r
53     http://www.SafeRTOS.com - A version that is certified for use in safety\r
54     critical systems.\r
55 \r
56     http://www.OpenRTOS.com - Commercial support, development, porting,\r
57     licensing and training services.\r
58 */\r
59 \r
60 #ifndef CO_ROUTINE_H\r
61 #define CO_ROUTINE_H\r
62 \r
63 #ifndef INC_FREERTOS_H\r
64         #error "include FreeRTOS.h must appear in source files before include croutine.h"\r
65 #endif\r
66 \r
67 #include "list.h"\r
68 \r
69 #ifdef __cplusplus\r
70 extern "C" {\r
71 #endif\r
72 \r
73 /* Used to hide the implementation of the co-routine control block.  The\r
74 control block structure however has to be included in the header due to\r
75 the macro implementation of the co-routine functionality. */\r
76 typedef void * xCoRoutineHandle;\r
77 \r
78 /* Defines the prototype to which co-routine functions must conform. */\r
79 typedef void (*crCOROUTINE_CODE)( xCoRoutineHandle, unsigned portBASE_TYPE );\r
80 \r
81 typedef struct corCoRoutineControlBlock\r
82 {\r
83         crCOROUTINE_CODE                pxCoRoutineFunction;\r
84         xListItem                               xGenericListItem;       /*< List item used to place the CRCB in ready and blocked queues. */\r
85         xListItem                               xEventListItem;         /*< List item used to place the CRCB in event lists. */\r
86         unsigned portBASE_TYPE  uxPriority;                     /*< The priority of the co-routine in relation to other co-routines. */\r
87         unsigned portBASE_TYPE  uxIndex;                        /*< Used to distinguish between co-routines when multiple co-routines use the same co-routine function. */\r
88         unsigned short          uxState;                        /*< Used internally by the co-routine implementation. */\r
89 } corCRCB; /* Co-routine control block.  Note must be identical in size down to uxPriority with tskTCB. */\r
90 \r
91 /**\r
92  * croutine. h\r
93  *<pre>\r
94  portBASE_TYPE xCoRoutineCreate(\r
95                                  crCOROUTINE_CODE pxCoRoutineCode,\r
96                                  unsigned portBASE_TYPE uxPriority,\r
97                                  unsigned portBASE_TYPE uxIndex\r
98                                );</pre>\r
99  *\r
100  * Create a new co-routine and add it to the list of co-routines that are\r
101  * ready to run.\r
102  *\r
103  * @param pxCoRoutineCode Pointer to the co-routine function.  Co-routine\r
104  * functions require special syntax - see the co-routine section of the WEB\r
105  * documentation for more information.\r
106  *\r
107  * @param uxPriority The priority with respect to other co-routines at which\r
108  *  the co-routine will run.\r
109  *\r
110  * @param uxIndex Used to distinguish between different co-routines that\r
111  * execute the same function.  See the example below and the co-routine section\r
112  * of the WEB documentation for further information.\r
113  *\r
114  * @return pdPASS if the co-routine was successfully created and added to a ready\r
115  * list, otherwise an error code defined with ProjDefs.h.\r
116  *\r
117  * Example usage:\r
118    <pre>\r
119  // Co-routine to be created.\r
120  void vFlashCoRoutine( xCoRoutineHandle xHandle, unsigned portBASE_TYPE uxIndex )\r
121  {\r
122  // Variables in co-routines must be declared static if they must maintain value across a blocking call.\r
123  // This may not be necessary for const variables.\r
124  static const char cLedToFlash[ 2 ] = { 5, 6 };\r
125  static const portTickType uxFlashRates[ 2 ] = { 200, 400 };\r
126 \r
127      // Must start every co-routine with a call to crSTART();\r
128      crSTART( xHandle );\r
129 \r
130      for( ;; )\r
131      {\r
132          // This co-routine just delays for a fixed period, then toggles\r
133          // an LED.  Two co-routines are created using this function, so\r
134          // the uxIndex parameter is used to tell the co-routine which\r
135          // LED to flash and how long to delay.  This assumes xQueue has\r
136          // already been created.\r
137          vParTestToggleLED( cLedToFlash[ uxIndex ] );\r
138          crDELAY( xHandle, uxFlashRates[ uxIndex ] );\r
139      }\r
140 \r
141      // Must end every co-routine with a call to crEND();\r
142      crEND();\r
143  }\r
144 \r
145  // Function that creates two co-routines.\r
146  void vOtherFunction( void )\r
147  {\r
148  unsigned char ucParameterToPass;\r
149  xTaskHandle xHandle;\r
150                 \r
151      // Create two co-routines at priority 0.  The first is given index 0\r
152      // so (from the code above) toggles LED 5 every 200 ticks.  The second\r
153      // is given index 1 so toggles LED 6 every 400 ticks.\r
154      for( uxIndex = 0; uxIndex < 2; uxIndex++ )\r
155      {\r
156          xCoRoutineCreate( vFlashCoRoutine, 0, uxIndex );\r
157      }\r
158  }\r
159    </pre>\r
160  * \defgroup xCoRoutineCreate xCoRoutineCreate\r
161  * \ingroup Tasks\r
162  */\r
163 signed portBASE_TYPE xCoRoutineCreate( crCOROUTINE_CODE pxCoRoutineCode, unsigned portBASE_TYPE uxPriority, unsigned portBASE_TYPE uxIndex );\r
164 \r
165 \r
166 /**\r
167  * croutine. h\r
168  *<pre>\r
169  void vCoRoutineSchedule( void );</pre>\r
170  *\r
171  * Run a co-routine.\r
172  *\r
173  * vCoRoutineSchedule() executes the highest priority co-routine that is able\r
174  * to run.  The co-routine will execute until it either blocks, yields or is\r
175  * preempted by a task.  Co-routines execute cooperatively so one\r
176  * co-routine cannot be preempted by another, but can be preempted by a task.\r
177  *\r
178  * If an application comprises of both tasks and co-routines then\r
179  * vCoRoutineSchedule should be called from the idle task (in an idle task\r
180  * hook).\r
181  *\r
182  * Example usage:\r
183    <pre>\r
184  // This idle task hook will schedule a co-routine each time it is called.\r
185  // The rest of the idle task will execute between co-routine calls.\r
186  void vApplicationIdleHook( void )\r
187  {\r
188         vCoRoutineSchedule();\r
189  }\r
190 \r
191  // Alternatively, if you do not require any other part of the idle task to\r
192  // execute, the idle task hook can call vCoRoutineScheduler() within an\r
193  // infinite loop.\r
194  void vApplicationIdleHook( void )\r
195  {\r
196     for( ;; )\r
197     {\r
198         vCoRoutineSchedule();\r
199     }\r
200  }\r
201  </pre>\r
202  * \defgroup vCoRoutineSchedule vCoRoutineSchedule\r
203  * \ingroup Tasks\r
204  */\r
205 void vCoRoutineSchedule( void );\r
206 \r
207 /**\r
208  * croutine. h\r
209  * <pre>\r
210  crSTART( xCoRoutineHandle xHandle );</pre>\r
211  *\r
212  * This macro MUST always be called at the start of a co-routine function.\r
213  *\r
214  * Example usage:\r
215    <pre>\r
216  // Co-routine to be created.\r
217  void vACoRoutine( xCoRoutineHandle xHandle, unsigned portBASE_TYPE uxIndex )\r
218  {\r
219  // Variables in co-routines must be declared static if they must maintain value across a blocking call.\r
220  static long ulAVariable;\r
221 \r
222      // Must start every co-routine with a call to crSTART();\r
223      crSTART( xHandle );\r
224 \r
225      for( ;; )\r
226      {\r
227           // Co-routine functionality goes here.\r
228      }\r
229 \r
230      // Must end every co-routine with a call to crEND();\r
231      crEND();\r
232  }</pre>\r
233  * \defgroup crSTART crSTART\r
234  * \ingroup Tasks\r
235  */\r
236 #define crSTART( pxCRCB ) switch( ( ( corCRCB * )( pxCRCB ) )->uxState ) { case 0:\r
237 \r
238 /**\r
239  * croutine. h\r
240  * <pre>\r
241  crEND();</pre>\r
242  *\r
243  * This macro MUST always be called at the end of a co-routine function.\r
244  *\r
245  * Example usage:\r
246    <pre>\r
247  // Co-routine to be created.\r
248  void vACoRoutine( xCoRoutineHandle xHandle, unsigned portBASE_TYPE uxIndex )\r
249  {\r
250  // Variables in co-routines must be declared static if they must maintain value across a blocking call.\r
251  static long ulAVariable;\r
252 \r
253      // Must start every co-routine with a call to crSTART();\r
254      crSTART( xHandle );\r
255 \r
256      for( ;; )\r
257      {\r
258           // Co-routine functionality goes here.\r
259      }\r
260 \r
261      // Must end every co-routine with a call to crEND();\r
262      crEND();\r
263  }</pre>\r
264  * \defgroup crSTART crSTART\r
265  * \ingroup Tasks\r
266  */\r
267 #define crEND() }\r
268 \r
269 /*\r
270  * These macros are intended for internal use by the co-routine implementation\r
271  * only.  The macros should not be used directly by application writers.\r
272  */\r
273 #define crSET_STATE0( xHandle ) ( ( corCRCB * )( xHandle ) )->uxState = (__LINE__ * 2); return; case (__LINE__ * 2):\r
274 #define crSET_STATE1( xHandle ) ( ( corCRCB * )( xHandle ) )->uxState = ((__LINE__ * 2)+1); return; case ((__LINE__ * 2)+1):\r
275 \r
276 /**\r
277  * croutine. h\r
278  *<pre>\r
279  crDELAY( xCoRoutineHandle xHandle, portTickType xTicksToDelay );</pre>\r
280  *\r
281  * Delay a co-routine for a fixed period of time.\r
282  *\r
283  * crDELAY can only be called from the co-routine function itself - not\r
284  * from within a function called by the co-routine function.  This is because\r
285  * co-routines do not maintain their own stack.\r
286  *\r
287  * @param xHandle The handle of the co-routine to delay.  This is the xHandle\r
288  * parameter of the co-routine function.\r
289  *\r
290  * @param xTickToDelay The number of ticks that the co-routine should delay\r
291  * for.  The actual amount of time this equates to is defined by\r
292  * configTICK_RATE_HZ (set in FreeRTOSConfig.h).  The constant portTICK_RATE_MS\r
293  * can be used to convert ticks to milliseconds.\r
294  *\r
295  * Example usage:\r
296    <pre>\r
297  // Co-routine to be created.\r
298  void vACoRoutine( xCoRoutineHandle xHandle, unsigned portBASE_TYPE uxIndex )\r
299  {\r
300  // Variables in co-routines must be declared static if they must maintain value across a blocking call.\r
301  // This may not be necessary for const variables.\r
302  // We are to delay for 200ms.\r
303  static const xTickType xDelayTime = 200 / portTICK_RATE_MS;\r
304 \r
305      // Must start every co-routine with a call to crSTART();\r
306      crSTART( xHandle );\r
307 \r
308      for( ;; )\r
309      {\r
310         // Delay for 200ms.\r
311         crDELAY( xHandle, xDelayTime );\r
312 \r
313         // Do something here.\r
314      }\r
315 \r
316      // Must end every co-routine with a call to crEND();\r
317      crEND();\r
318  }</pre>\r
319  * \defgroup crDELAY crDELAY\r
320  * \ingroup Tasks\r
321  */\r
322 #define crDELAY( xHandle, xTicksToDelay )                                                                                               \\r
323         if( ( xTicksToDelay ) > 0 )                                                                                                                     \\r
324         {                                                                                                                                                                       \\r
325                 vCoRoutineAddToDelayedList( ( xTicksToDelay ), NULL );                                                  \\r
326         }                                                                                                                                                                       \\r
327         crSET_STATE0( ( xHandle ) );\r
328 \r
329 /**\r
330  * <pre>\r
331  crQUEUE_SEND(\r
332                   xCoRoutineHandle xHandle,\r
333                   xQueueHandle pxQueue,\r
334                   void *pvItemToQueue,\r
335                   portTickType xTicksToWait,\r
336                   portBASE_TYPE *pxResult\r
337              )</pre>\r
338  *\r
339  * The macro's crQUEUE_SEND() and crQUEUE_RECEIVE() are the co-routine\r
340  * equivalent to the xQueueSend() and xQueueReceive() functions used by tasks.\r
341  *\r
342  * crQUEUE_SEND and crQUEUE_RECEIVE can only be used from a co-routine whereas\r
343  * xQueueSend() and xQueueReceive() can only be used from tasks.\r
344  *\r
345  * crQUEUE_SEND can only be called from the co-routine function itself - not\r
346  * from within a function called by the co-routine function.  This is because\r
347  * co-routines do not maintain their own stack.\r
348  *\r
349  * See the co-routine section of the WEB documentation for information on\r
350  * passing data between tasks and co-routines and between ISR's and\r
351  * co-routines.\r
352  *\r
353  * @param xHandle The handle of the calling co-routine.  This is the xHandle\r
354  * parameter of the co-routine function.\r
355  *\r
356  * @param pxQueue The handle of the queue on which the data will be posted.\r
357  * The handle is obtained as the return value when the queue is created using\r
358  * the xQueueCreate() API function.\r
359  *\r
360  * @param pvItemToQueue A pointer to the data being posted onto the queue.\r
361  * The number of bytes of each queued item is specified when the queue is\r
362  * created.  This number of bytes is copied from pvItemToQueue into the queue\r
363  * itself.\r
364  *\r
365  * @param xTickToDelay The number of ticks that the co-routine should block\r
366  * to wait for space to become available on the queue, should space not be\r
367  * available immediately. The actual amount of time this equates to is defined\r
368  * by configTICK_RATE_HZ (set in FreeRTOSConfig.h).  The constant\r
369  * portTICK_RATE_MS can be used to convert ticks to milliseconds (see example\r
370  * below).\r
371  *\r
372  * @param pxResult The variable pointed to by pxResult will be set to pdPASS if\r
373  * data was successfully posted onto the queue, otherwise it will be set to an\r
374  * error defined within ProjDefs.h.\r
375  *\r
376  * Example usage:\r
377    <pre>\r
378  // Co-routine function that blocks for a fixed period then posts a number onto\r
379  // a queue.\r
380  static void prvCoRoutineFlashTask( xCoRoutineHandle xHandle, unsigned portBASE_TYPE uxIndex )\r
381  {\r
382  // Variables in co-routines must be declared static if they must maintain value across a blocking call.\r
383  static portBASE_TYPE xNumberToPost = 0;\r
384  static portBASE_TYPE xResult;\r
385 \r
386     // Co-routines must begin with a call to crSTART().\r
387     crSTART( xHandle );\r
388 \r
389     for( ;; )\r
390     {\r
391         // This assumes the queue has already been created.\r
392         crQUEUE_SEND( xHandle, xCoRoutineQueue, &xNumberToPost, NO_DELAY, &xResult );\r
393 \r
394         if( xResult != pdPASS )\r
395         {\r
396             // The message was not posted!\r
397         }\r
398 \r
399         // Increment the number to be posted onto the queue.\r
400         xNumberToPost++;\r
401 \r
402         // Delay for 100 ticks.\r
403         crDELAY( xHandle, 100 );\r
404     }\r
405 \r
406     // Co-routines must end with a call to crEND().\r
407     crEND();\r
408  }</pre>\r
409  * \defgroup crQUEUE_SEND crQUEUE_SEND\r
410  * \ingroup Tasks\r
411  */\r
412 #define crQUEUE_SEND( xHandle, pxQueue, pvItemToQueue, xTicksToWait, pxResult )                 \\r
413 {                                                                                                                                                                               \\r
414         *( pxResult ) = xQueueCRSend( ( pxQueue) , ( pvItemToQueue) , ( xTicksToWait ) );       \\r
415         if( *( pxResult ) == errQUEUE_BLOCKED )                                                                                         \\r
416         {                                                                                                                                                                       \\r
417                 crSET_STATE0( ( xHandle ) );                                                                                                    \\r
418                 *pxResult = xQueueCRSend( ( pxQueue ), ( pvItemToQueue ), 0 );                                  \\r
419         }                                                                                                                                                                       \\r
420         if( *pxResult == errQUEUE_YIELD )                                                                                                       \\r
421         {                                                                                                                                                                       \\r
422                 crSET_STATE1( ( xHandle ) );                                                                                                    \\r
423                 *pxResult = pdPASS;                                                                                                                             \\r
424         }                                                                                                                                                                       \\r
425 }\r
426 \r
427 /**\r
428  * croutine. h\r
429  * <pre>\r
430   crQUEUE_RECEIVE(\r
431                      xCoRoutineHandle xHandle,\r
432                      xQueueHandle pxQueue,\r
433                      void *pvBuffer,\r
434                      portTickType xTicksToWait,\r
435                      portBASE_TYPE *pxResult\r
436                  )</pre>\r
437  *\r
438  * The macro's crQUEUE_SEND() and crQUEUE_RECEIVE() are the co-routine\r
439  * equivalent to the xQueueSend() and xQueueReceive() functions used by tasks.\r
440  *\r
441  * crQUEUE_SEND and crQUEUE_RECEIVE can only be used from a co-routine whereas\r
442  * xQueueSend() and xQueueReceive() can only be used from tasks.\r
443  *\r
444  * crQUEUE_RECEIVE can only be called from the co-routine function itself - not\r
445  * from within a function called by the co-routine function.  This is because\r
446  * co-routines do not maintain their own stack.\r
447  *\r
448  * See the co-routine section of the WEB documentation for information on\r
449  * passing data between tasks and co-routines and between ISR's and\r
450  * co-routines.\r
451  *\r
452  * @param xHandle The handle of the calling co-routine.  This is the xHandle\r
453  * parameter of the co-routine function.\r
454  *\r
455  * @param pxQueue The handle of the queue from which the data will be received.\r
456  * The handle is obtained as the return value when the queue is created using\r
457  * the xQueueCreate() API function.\r
458  *\r
459  * @param pvBuffer The buffer into which the received item is to be copied.\r
460  * The number of bytes of each queued item is specified when the queue is\r
461  * created.  This number of bytes is copied into pvBuffer.\r
462  *\r
463  * @param xTickToDelay The number of ticks that the co-routine should block\r
464  * to wait for data to become available from the queue, should data not be\r
465  * available immediately. The actual amount of time this equates to is defined\r
466  * by configTICK_RATE_HZ (set in FreeRTOSConfig.h).  The constant\r
467  * portTICK_RATE_MS can be used to convert ticks to milliseconds (see the\r
468  * crQUEUE_SEND example).\r
469  *\r
470  * @param pxResult The variable pointed to by pxResult will be set to pdPASS if\r
471  * data was successfully retrieved from the queue, otherwise it will be set to\r
472  * an error code as defined within ProjDefs.h.\r
473  *\r
474  * Example usage:\r
475  <pre>\r
476  // A co-routine receives the number of an LED to flash from a queue.  It\r
477  // blocks on the queue until the number is received.\r
478  static void prvCoRoutineFlashWorkTask( xCoRoutineHandle xHandle, unsigned portBASE_TYPE uxIndex )\r
479  {\r
480  // Variables in co-routines must be declared static if they must maintain value across a blocking call.\r
481  static portBASE_TYPE xResult;\r
482  static unsigned portBASE_TYPE uxLEDToFlash;\r
483 \r
484     // All co-routines must start with a call to crSTART().\r
485     crSTART( xHandle );\r
486 \r
487     for( ;; )\r
488     {\r
489         // Wait for data to become available on the queue.\r
490         crQUEUE_RECEIVE( xHandle, xCoRoutineQueue, &uxLEDToFlash, portMAX_DELAY, &xResult );\r
491 \r
492         if( xResult == pdPASS )\r
493         {\r
494             // We received the LED to flash - flash it!\r
495             vParTestToggleLED( uxLEDToFlash );\r
496         }\r
497     }\r
498 \r
499     crEND();\r
500  }</pre>\r
501  * \defgroup crQUEUE_RECEIVE crQUEUE_RECEIVE\r
502  * \ingroup Tasks\r
503  */\r
504 #define crQUEUE_RECEIVE( xHandle, pxQueue, pvBuffer, xTicksToWait, pxResult )                   \\r
505 {                                                                                                                                                                               \\r
506         *( pxResult ) = xQueueCRReceive( ( pxQueue) , ( pvBuffer ), ( xTicksToWait ) );         \\r
507         if( *( pxResult ) == errQUEUE_BLOCKED )                                                                                         \\r
508         {                                                                                                                                                                       \\r
509                 crSET_STATE0( ( xHandle ) );                                                                                                    \\r
510                 *( pxResult ) = xQueueCRReceive( ( pxQueue) , ( pvBuffer ), 0 );                                \\r
511         }                                                                                                                                                                       \\r
512         if( *( pxResult ) == errQUEUE_YIELD )                                                                                           \\r
513         {                                                                                                                                                                       \\r
514                 crSET_STATE1( ( xHandle ) );                                                                                                    \\r
515                 *( pxResult ) = pdPASS;                                                                                                                 \\r
516         }                                                                                                                                                                       \\r
517 }\r
518 \r
519 /**\r
520  * croutine. h\r
521  * <pre>\r
522   crQUEUE_SEND_FROM_ISR(\r
523                             xQueueHandle pxQueue,\r
524                             void *pvItemToQueue,\r
525                             portBASE_TYPE xCoRoutinePreviouslyWoken\r
526                        )</pre>\r
527  *\r
528  * The macro's crQUEUE_SEND_FROM_ISR() and crQUEUE_RECEIVE_FROM_ISR() are the\r
529  * co-routine equivalent to the xQueueSendFromISR() and xQueueReceiveFromISR()\r
530  * functions used by tasks.\r
531  *\r
532  * crQUEUE_SEND_FROM_ISR() and crQUEUE_RECEIVE_FROM_ISR() can only be used to\r
533  * pass data between a co-routine and and ISR, whereas xQueueSendFromISR() and\r
534  * xQueueReceiveFromISR() can only be used to pass data between a task and and\r
535  * ISR.\r
536  *\r
537  * crQUEUE_SEND_FROM_ISR can only be called from an ISR to send data to a queue\r
538  * that is being used from within a co-routine.\r
539  *\r
540  * See the co-routine section of the WEB documentation for information on\r
541  * passing data between tasks and co-routines and between ISR's and\r
542  * co-routines.\r
543  *\r
544  * @param xQueue The handle to the queue on which the item is to be posted.\r
545  *\r
546  * @param pvItemToQueue A pointer to the item that is to be placed on the\r
547  * queue.  The size of the items the queue will hold was defined when the\r
548  * queue was created, so this many bytes will be copied from pvItemToQueue\r
549  * into the queue storage area.\r
550  *\r
551  * @param xCoRoutinePreviouslyWoken This is included so an ISR can post onto\r
552  * the same queue multiple times from a single interrupt.  The first call\r
553  * should always pass in pdFALSE.  Subsequent calls should pass in\r
554  * the value returned from the previous call.\r
555  *\r
556  * @return pdTRUE if a co-routine was woken by posting onto the queue.  This is\r
557  * used by the ISR to determine if a context switch may be required following\r
558  * the ISR.\r
559  *\r
560  * Example usage:\r
561  <pre>\r
562  // A co-routine that blocks on a queue waiting for characters to be received.\r
563  static void vReceivingCoRoutine( xCoRoutineHandle xHandle, unsigned portBASE_TYPE uxIndex )\r
564  {\r
565  char cRxedChar;\r
566  portBASE_TYPE xResult;\r
567 \r
568      // All co-routines must start with a call to crSTART().\r
569      crSTART( xHandle );\r
570 \r
571      for( ;; )\r
572      {\r
573          // Wait for data to become available on the queue.  This assumes the\r
574          // queue xCommsRxQueue has already been created!\r
575          crQUEUE_RECEIVE( xHandle, xCommsRxQueue, &uxLEDToFlash, portMAX_DELAY, &xResult );\r
576 \r
577          // Was a character received?\r
578          if( xResult == pdPASS )\r
579          {\r
580              // Process the character here.\r
581          }\r
582      }\r
583 \r
584      // All co-routines must end with a call to crEND().\r
585      crEND();\r
586  }\r
587 \r
588  // An ISR that uses a queue to send characters received on a serial port to\r
589  // a co-routine.\r
590  void vUART_ISR( void )\r
591  {\r
592  char cRxedChar;\r
593  portBASE_TYPE xCRWokenByPost = pdFALSE;\r
594 \r
595      // We loop around reading characters until there are none left in the UART.\r
596      while( UART_RX_REG_NOT_EMPTY() )\r
597      {\r
598          // Obtain the character from the UART.\r
599          cRxedChar = UART_RX_REG;\r
600 \r
601          // Post the character onto a queue.  xCRWokenByPost will be pdFALSE\r
602          // the first time around the loop.  If the post causes a co-routine\r
603          // to be woken (unblocked) then xCRWokenByPost will be set to pdTRUE.\r
604          // In this manner we can ensure that if more than one co-routine is\r
605          // blocked on the queue only one is woken by this ISR no matter how\r
606          // many characters are posted to the queue.\r
607          xCRWokenByPost = crQUEUE_SEND_FROM_ISR( xCommsRxQueue, &cRxedChar, xCRWokenByPost );\r
608      }\r
609  }</pre>\r
610  * \defgroup crQUEUE_SEND_FROM_ISR crQUEUE_SEND_FROM_ISR\r
611  * \ingroup Tasks\r
612  */\r
613 #define crQUEUE_SEND_FROM_ISR( pxQueue, pvItemToQueue, xCoRoutinePreviouslyWoken ) xQueueCRSendFromISR( ( pxQueue ), ( pvItemToQueue ), ( xCoRoutinePreviouslyWoken ) )\r
614 \r
615 \r
616 /**\r
617  * croutine. h\r
618  * <pre>\r
619   crQUEUE_SEND_FROM_ISR(\r
620                             xQueueHandle pxQueue,\r
621                             void *pvBuffer,\r
622                             portBASE_TYPE * pxCoRoutineWoken\r
623                        )</pre>\r
624  *\r
625  * The macro's crQUEUE_SEND_FROM_ISR() and crQUEUE_RECEIVE_FROM_ISR() are the\r
626  * co-routine equivalent to the xQueueSendFromISR() and xQueueReceiveFromISR()\r
627  * functions used by tasks.\r
628  *\r
629  * crQUEUE_SEND_FROM_ISR() and crQUEUE_RECEIVE_FROM_ISR() can only be used to\r
630  * pass data between a co-routine and and ISR, whereas xQueueSendFromISR() and\r
631  * xQueueReceiveFromISR() can only be used to pass data between a task and and\r
632  * ISR.\r
633  *\r
634  * crQUEUE_RECEIVE_FROM_ISR can only be called from an ISR to receive data\r
635  * from a queue that is being used from within a co-routine (a co-routine\r
636  * posted to the queue).\r
637  *\r
638  * See the co-routine section of the WEB documentation for information on\r
639  * passing data between tasks and co-routines and between ISR's and\r
640  * co-routines.\r
641  *\r
642  * @param xQueue The handle to the queue on which the item is to be posted.\r
643  *\r
644  * @param pvBuffer A pointer to a buffer into which the received item will be\r
645  * placed.  The size of the items the queue will hold was defined when the\r
646  * queue was created, so this many bytes will be copied from the queue into\r
647  * pvBuffer.\r
648  *\r
649  * @param pxCoRoutineWoken A co-routine may be blocked waiting for space to become\r
650  * available on the queue.  If crQUEUE_RECEIVE_FROM_ISR causes such a\r
651  * co-routine to unblock *pxCoRoutineWoken will get set to pdTRUE, otherwise\r
652  * *pxCoRoutineWoken will remain unchanged.\r
653  *\r
654  * @return pdTRUE an item was successfully received from the queue, otherwise\r
655  * pdFALSE.\r
656  *\r
657  * Example usage:\r
658  <pre>\r
659  // A co-routine that posts a character to a queue then blocks for a fixed\r
660  // period.  The character is incremented each time.\r
661  static void vSendingCoRoutine( xCoRoutineHandle xHandle, unsigned portBASE_TYPE uxIndex )\r
662  {\r
663  // cChar holds its value while this co-routine is blocked and must therefore\r
664  // be declared static.\r
665  static char cCharToTx = 'a';\r
666  portBASE_TYPE xResult;\r
667 \r
668      // All co-routines must start with a call to crSTART().\r
669      crSTART( xHandle );\r
670 \r
671      for( ;; )\r
672      {\r
673          // Send the next character to the queue.\r
674          crQUEUE_SEND( xHandle, xCoRoutineQueue, &cCharToTx, NO_DELAY, &xResult );\r
675 \r
676          if( xResult == pdPASS )\r
677          {\r
678              // The character was successfully posted to the queue.\r
679          }\r
680                  else\r
681                  {\r
682                         // Could not post the character to the queue.\r
683                  }\r
684 \r
685          // Enable the UART Tx interrupt to cause an interrupt in this\r
686                  // hypothetical UART.  The interrupt will obtain the character\r
687                  // from the queue and send it.\r
688                  ENABLE_RX_INTERRUPT();\r
689 \r
690                  // Increment to the next character then block for a fixed period.\r
691                  // cCharToTx will maintain its value across the delay as it is\r
692                  // declared static.\r
693                  cCharToTx++;\r
694                  if( cCharToTx > 'x' )\r
695                  {\r
696                         cCharToTx = 'a';\r
697                  }\r
698                  crDELAY( 100 );\r
699      }\r
700 \r
701      // All co-routines must end with a call to crEND().\r
702      crEND();\r
703  }\r
704 \r
705  // An ISR that uses a queue to receive characters to send on a UART.\r
706  void vUART_ISR( void )\r
707  {\r
708  char cCharToTx;\r
709  portBASE_TYPE xCRWokenByPost = pdFALSE;\r
710 \r
711      while( UART_TX_REG_EMPTY() )\r
712      {\r
713          // Are there any characters in the queue waiting to be sent?\r
714                  // xCRWokenByPost will automatically be set to pdTRUE if a co-routine\r
715                  // is woken by the post - ensuring that only a single co-routine is\r
716                  // woken no matter how many times we go around this loop.\r
717          if( crQUEUE_RECEIVE_FROM_ISR( pxQueue, &cCharToTx, &xCRWokenByPost ) )\r
718                  {\r
719                          SEND_CHARACTER( cCharToTx );\r
720                  }\r
721      }\r
722  }</pre>\r
723  * \defgroup crQUEUE_RECEIVE_FROM_ISR crQUEUE_RECEIVE_FROM_ISR\r
724  * \ingroup Tasks\r
725  */\r
726 #define crQUEUE_RECEIVE_FROM_ISR( pxQueue, pvBuffer, pxCoRoutineWoken ) xQueueCRReceiveFromISR( ( pxQueue ), ( pvBuffer ), ( pxCoRoutineWoken ) )\r
727 \r
728 /*\r
729  * This function is intended for internal use by the co-routine macros only.\r
730  * The macro nature of the co-routine implementation requires that the\r
731  * prototype appears here.  The function should not be used by application\r
732  * writers.\r
733  *\r
734  * Removes the current co-routine from its ready list and places it in the\r
735  * appropriate delayed list.\r
736  */\r
737 void vCoRoutineAddToDelayedList( portTickType xTicksToDelay, xList *pxEventList );\r
738 \r
739 /*\r
740  * This function is intended for internal use by the queue implementation only.\r
741  * The function should not be used by application writers.\r
742  *\r
743  * Removes the highest priority co-routine from the event list and places it in\r
744  * the pending ready list.\r
745  */\r
746 signed portBASE_TYPE xCoRoutineRemoveFromEventList( const xList *pxEventList );\r
747 \r
748 #ifdef __cplusplus\r
749 }\r
750 #endif\r
751 \r
752 #endif /* CO_ROUTINE_H */\r