2 * FreeRTOS Kernel V10.3.1
\r
3 * Copyright (C) 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved.
\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
12 * The above copyright notice and this permission notice shall be included in all
\r
13 * copies or substantial portions of the Software.
\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
22 * http://www.FreeRTOS.org
\r
23 * http://aws.amazon.com/freertos
\r
27 #ifndef CO_ROUTINE_H
\r
28 #define CO_ROUTINE_H
\r
30 #ifndef INC_FREERTOS_H
\r
31 #error "include FreeRTOS.h must appear in source files before include croutine.h"
\r
40 /* Used to hide the implementation of the co-routine control block. The
\r
41 control block structure however has to be included in the header due to
\r
42 the macro implementation of the co-routine functionality. */
\r
43 typedef void * CoRoutineHandle_t;
\r
45 /* Defines the prototype to which co-routine functions must conform. */
\r
46 typedef void (*crCOROUTINE_CODE)( CoRoutineHandle_t, UBaseType_t );
\r
48 typedef struct corCoRoutineControlBlock
\r
50 crCOROUTINE_CODE pxCoRoutineFunction;
\r
51 ListItem_t xGenericListItem; /*< List item used to place the CRCB in ready and blocked queues. */
\r
52 ListItem_t xEventListItem; /*< List item used to place the CRCB in event lists. */
\r
53 UBaseType_t uxPriority; /*< The priority of the co-routine in relation to other co-routines. */
\r
54 UBaseType_t uxIndex; /*< Used to distinguish between co-routines when multiple co-routines use the same co-routine function. */
\r
55 uint16_t uxState; /*< Used internally by the co-routine implementation. */
\r
56 } CRCB_t; /* Co-routine control block. Note must be identical in size down to uxPriority with TCB_t. */
\r
61 BaseType_t xCoRoutineCreate(
\r
62 crCOROUTINE_CODE pxCoRoutineCode,
\r
63 UBaseType_t uxPriority,
\r
67 * Create a new co-routine and add it to the list of co-routines that are
\r
70 * @param pxCoRoutineCode Pointer to the co-routine function. Co-routine
\r
71 * functions require special syntax - see the co-routine section of the WEB
\r
72 * documentation for more information.
\r
74 * @param uxPriority The priority with respect to other co-routines at which
\r
75 * the co-routine will run.
\r
77 * @param uxIndex Used to distinguish between different co-routines that
\r
78 * execute the same function. See the example below and the co-routine section
\r
79 * of the WEB documentation for further information.
\r
81 * @return pdPASS if the co-routine was successfully created and added to a ready
\r
82 * list, otherwise an error code defined with ProjDefs.h.
\r
86 // Co-routine to be created.
\r
87 void vFlashCoRoutine( CoRoutineHandle_t xHandle, UBaseType_t uxIndex )
\r
89 // Variables in co-routines must be declared static if they must maintain value across a blocking call.
\r
90 // This may not be necessary for const variables.
\r
91 static const char cLedToFlash[ 2 ] = { 5, 6 };
\r
92 static const TickType_t uxFlashRates[ 2 ] = { 200, 400 };
\r
94 // Must start every co-routine with a call to crSTART();
\r
99 // This co-routine just delays for a fixed period, then toggles
\r
100 // an LED. Two co-routines are created using this function, so
\r
101 // the uxIndex parameter is used to tell the co-routine which
\r
102 // LED to flash and how int32_t to delay. This assumes xQueue has
\r
103 // already been created.
\r
104 vParTestToggleLED( cLedToFlash[ uxIndex ] );
\r
105 crDELAY( xHandle, uxFlashRates[ uxIndex ] );
\r
108 // Must end every co-routine with a call to crEND();
\r
112 // Function that creates two co-routines.
\r
113 void vOtherFunction( void )
\r
115 uint8_t ucParameterToPass;
\r
116 TaskHandle_t xHandle;
\r
118 // Create two co-routines at priority 0. The first is given index 0
\r
119 // so (from the code above) toggles LED 5 every 200 ticks. The second
\r
120 // is given index 1 so toggles LED 6 every 400 ticks.
\r
121 for( uxIndex = 0; uxIndex < 2; uxIndex++ )
\r
123 xCoRoutineCreate( vFlashCoRoutine, 0, uxIndex );
\r
127 * \defgroup xCoRoutineCreate xCoRoutineCreate
\r
130 BaseType_t xCoRoutineCreate( crCOROUTINE_CODE pxCoRoutineCode, UBaseType_t uxPriority, UBaseType_t uxIndex );
\r
136 void vCoRoutineSchedule( void );</pre>
\r
138 * Run a co-routine.
\r
140 * vCoRoutineSchedule() executes the highest priority co-routine that is able
\r
141 * to run. The co-routine will execute until it either blocks, yields or is
\r
142 * preempted by a task. Co-routines execute cooperatively so one
\r
143 * co-routine cannot be preempted by another, but can be preempted by a task.
\r
145 * If an application comprises of both tasks and co-routines then
\r
146 * vCoRoutineSchedule should be called from the idle task (in an idle task
\r
151 // This idle task hook will schedule a co-routine each time it is called.
\r
152 // The rest of the idle task will execute between co-routine calls.
\r
153 void vApplicationIdleHook( void )
\r
155 vCoRoutineSchedule();
\r
158 // Alternatively, if you do not require any other part of the idle task to
\r
159 // execute, the idle task hook can call vCoRoutineSchedule() within an
\r
161 void vApplicationIdleHook( void )
\r
165 vCoRoutineSchedule();
\r
169 * \defgroup vCoRoutineSchedule vCoRoutineSchedule
\r
172 void vCoRoutineSchedule( void );
\r
177 crSTART( CoRoutineHandle_t xHandle );</pre>
\r
179 * This macro MUST always be called at the start of a co-routine function.
\r
183 // Co-routine to be created.
\r
184 void vACoRoutine( CoRoutineHandle_t xHandle, UBaseType_t uxIndex )
\r
186 // Variables in co-routines must be declared static if they must maintain value across a blocking call.
\r
187 static int32_t ulAVariable;
\r
189 // Must start every co-routine with a call to crSTART();
\r
190 crSTART( xHandle );
\r
194 // Co-routine functionality goes here.
\r
197 // Must end every co-routine with a call to crEND();
\r
200 * \defgroup crSTART crSTART
\r
203 #define crSTART( pxCRCB ) switch( ( ( CRCB_t * )( pxCRCB ) )->uxState ) { case 0:
\r
210 * This macro MUST always be called at the end of a co-routine function.
\r
214 // Co-routine to be created.
\r
215 void vACoRoutine( CoRoutineHandle_t xHandle, UBaseType_t uxIndex )
\r
217 // Variables in co-routines must be declared static if they must maintain value across a blocking call.
\r
218 static int32_t ulAVariable;
\r
220 // Must start every co-routine with a call to crSTART();
\r
221 crSTART( xHandle );
\r
225 // Co-routine functionality goes here.
\r
228 // Must end every co-routine with a call to crEND();
\r
231 * \defgroup crSTART crSTART
\r
237 * These macros are intended for internal use by the co-routine implementation
\r
238 * only. The macros should not be used directly by application writers.
\r
240 #define crSET_STATE0( xHandle ) ( ( CRCB_t * )( xHandle ) )->uxState = (__LINE__ * 2); return; case (__LINE__ * 2):
\r
241 #define crSET_STATE1( xHandle ) ( ( CRCB_t * )( xHandle ) )->uxState = ((__LINE__ * 2)+1); return; case ((__LINE__ * 2)+1):
\r
246 crDELAY( CoRoutineHandle_t xHandle, TickType_t xTicksToDelay );</pre>
\r
248 * Delay a co-routine for a fixed period of time.
\r
250 * crDELAY can only be called from the co-routine function itself - not
\r
251 * from within a function called by the co-routine function. This is because
\r
252 * co-routines do not maintain their own stack.
\r
254 * @param xHandle The handle of the co-routine to delay. This is the xHandle
\r
255 * parameter of the co-routine function.
\r
257 * @param xTickToDelay The number of ticks that the co-routine should delay
\r
258 * for. The actual amount of time this equates to is defined by
\r
259 * configTICK_RATE_HZ (set in FreeRTOSConfig.h). The constant portTICK_PERIOD_MS
\r
260 * can be used to convert ticks to milliseconds.
\r
264 // Co-routine to be created.
\r
265 void vACoRoutine( CoRoutineHandle_t xHandle, UBaseType_t uxIndex )
\r
267 // Variables in co-routines must be declared static if they must maintain value across a blocking call.
\r
268 // This may not be necessary for const variables.
\r
269 // We are to delay for 200ms.
\r
270 static const xTickType xDelayTime = 200 / portTICK_PERIOD_MS;
\r
272 // Must start every co-routine with a call to crSTART();
\r
273 crSTART( xHandle );
\r
277 // Delay for 200ms.
\r
278 crDELAY( xHandle, xDelayTime );
\r
280 // Do something here.
\r
283 // Must end every co-routine with a call to crEND();
\r
286 * \defgroup crDELAY crDELAY
\r
289 #define crDELAY( xHandle, xTicksToDelay ) \
\r
290 if( ( xTicksToDelay ) > 0 ) \
\r
292 vCoRoutineAddToDelayedList( ( xTicksToDelay ), NULL ); \
\r
294 crSET_STATE0( ( xHandle ) );
\r
299 CoRoutineHandle_t xHandle,
\r
300 QueueHandle_t pxQueue,
\r
301 void *pvItemToQueue,
\r
302 TickType_t xTicksToWait,
\r
303 BaseType_t *pxResult
\r
306 * The macro's crQUEUE_SEND() and crQUEUE_RECEIVE() are the co-routine
\r
307 * equivalent to the xQueueSend() and xQueueReceive() functions used by tasks.
\r
309 * crQUEUE_SEND and crQUEUE_RECEIVE can only be used from a co-routine whereas
\r
310 * xQueueSend() and xQueueReceive() can only be used from tasks.
\r
312 * crQUEUE_SEND can only be called from the co-routine function itself - not
\r
313 * from within a function called by the co-routine function. This is because
\r
314 * co-routines do not maintain their own stack.
\r
316 * See the co-routine section of the WEB documentation for information on
\r
317 * passing data between tasks and co-routines and between ISR's and
\r
320 * @param xHandle The handle of the calling co-routine. This is the xHandle
\r
321 * parameter of the co-routine function.
\r
323 * @param pxQueue The handle of the queue on which the data will be posted.
\r
324 * The handle is obtained as the return value when the queue is created using
\r
325 * the xQueueCreate() API function.
\r
327 * @param pvItemToQueue A pointer to the data being posted onto the queue.
\r
328 * The number of bytes of each queued item is specified when the queue is
\r
329 * created. This number of bytes is copied from pvItemToQueue into the queue
\r
332 * @param xTickToDelay The number of ticks that the co-routine should block
\r
333 * to wait for space to become available on the queue, should space not be
\r
334 * available immediately. The actual amount of time this equates to is defined
\r
335 * by configTICK_RATE_HZ (set in FreeRTOSConfig.h). The constant
\r
336 * portTICK_PERIOD_MS can be used to convert ticks to milliseconds (see example
\r
339 * @param pxResult The variable pointed to by pxResult will be set to pdPASS if
\r
340 * data was successfully posted onto the queue, otherwise it will be set to an
\r
341 * error defined within ProjDefs.h.
\r
345 // Co-routine function that blocks for a fixed period then posts a number onto
\r
347 static void prvCoRoutineFlashTask( CoRoutineHandle_t xHandle, UBaseType_t uxIndex )
\r
349 // Variables in co-routines must be declared static if they must maintain value across a blocking call.
\r
350 static BaseType_t xNumberToPost = 0;
\r
351 static BaseType_t xResult;
\r
353 // Co-routines must begin with a call to crSTART().
\r
354 crSTART( xHandle );
\r
358 // This assumes the queue has already been created.
\r
359 crQUEUE_SEND( xHandle, xCoRoutineQueue, &xNumberToPost, NO_DELAY, &xResult );
\r
361 if( xResult != pdPASS )
\r
363 // The message was not posted!
\r
366 // Increment the number to be posted onto the queue.
\r
369 // Delay for 100 ticks.
\r
370 crDELAY( xHandle, 100 );
\r
373 // Co-routines must end with a call to crEND().
\r
376 * \defgroup crQUEUE_SEND crQUEUE_SEND
\r
379 #define crQUEUE_SEND( xHandle, pxQueue, pvItemToQueue, xTicksToWait, pxResult ) \
\r
381 *( pxResult ) = xQueueCRSend( ( pxQueue) , ( pvItemToQueue) , ( xTicksToWait ) ); \
\r
382 if( *( pxResult ) == errQUEUE_BLOCKED ) \
\r
384 crSET_STATE0( ( xHandle ) ); \
\r
385 *pxResult = xQueueCRSend( ( pxQueue ), ( pvItemToQueue ), 0 ); \
\r
387 if( *pxResult == errQUEUE_YIELD ) \
\r
389 crSET_STATE1( ( xHandle ) ); \
\r
390 *pxResult = pdPASS; \
\r
398 CoRoutineHandle_t xHandle,
\r
399 QueueHandle_t pxQueue,
\r
401 TickType_t xTicksToWait,
\r
402 BaseType_t *pxResult
\r
405 * The macro's crQUEUE_SEND() and crQUEUE_RECEIVE() are the co-routine
\r
406 * equivalent to the xQueueSend() and xQueueReceive() functions used by tasks.
\r
408 * crQUEUE_SEND and crQUEUE_RECEIVE can only be used from a co-routine whereas
\r
409 * xQueueSend() and xQueueReceive() can only be used from tasks.
\r
411 * crQUEUE_RECEIVE can only be called from the co-routine function itself - not
\r
412 * from within a function called by the co-routine function. This is because
\r
413 * co-routines do not maintain their own stack.
\r
415 * See the co-routine section of the WEB documentation for information on
\r
416 * passing data between tasks and co-routines and between ISR's and
\r
419 * @param xHandle The handle of the calling co-routine. This is the xHandle
\r
420 * parameter of the co-routine function.
\r
422 * @param pxQueue The handle of the queue from which the data will be received.
\r
423 * The handle is obtained as the return value when the queue is created using
\r
424 * the xQueueCreate() API function.
\r
426 * @param pvBuffer The buffer into which the received item is to be copied.
\r
427 * The number of bytes of each queued item is specified when the queue is
\r
428 * created. This number of bytes is copied into pvBuffer.
\r
430 * @param xTickToDelay The number of ticks that the co-routine should block
\r
431 * to wait for data to become available from the queue, should data not be
\r
432 * available immediately. The actual amount of time this equates to is defined
\r
433 * by configTICK_RATE_HZ (set in FreeRTOSConfig.h). The constant
\r
434 * portTICK_PERIOD_MS can be used to convert ticks to milliseconds (see the
\r
435 * crQUEUE_SEND example).
\r
437 * @param pxResult The variable pointed to by pxResult will be set to pdPASS if
\r
438 * data was successfully retrieved from the queue, otherwise it will be set to
\r
439 * an error code as defined within ProjDefs.h.
\r
443 // A co-routine receives the number of an LED to flash from a queue. It
\r
444 // blocks on the queue until the number is received.
\r
445 static void prvCoRoutineFlashWorkTask( CoRoutineHandle_t xHandle, UBaseType_t uxIndex )
\r
447 // Variables in co-routines must be declared static if they must maintain value across a blocking call.
\r
448 static BaseType_t xResult;
\r
449 static UBaseType_t uxLEDToFlash;
\r
451 // All co-routines must start with a call to crSTART().
\r
452 crSTART( xHandle );
\r
456 // Wait for data to become available on the queue.
\r
457 crQUEUE_RECEIVE( xHandle, xCoRoutineQueue, &uxLEDToFlash, portMAX_DELAY, &xResult );
\r
459 if( xResult == pdPASS )
\r
461 // We received the LED to flash - flash it!
\r
462 vParTestToggleLED( uxLEDToFlash );
\r
468 * \defgroup crQUEUE_RECEIVE crQUEUE_RECEIVE
\r
471 #define crQUEUE_RECEIVE( xHandle, pxQueue, pvBuffer, xTicksToWait, pxResult ) \
\r
473 *( pxResult ) = xQueueCRReceive( ( pxQueue) , ( pvBuffer ), ( xTicksToWait ) ); \
\r
474 if( *( pxResult ) == errQUEUE_BLOCKED ) \
\r
476 crSET_STATE0( ( xHandle ) ); \
\r
477 *( pxResult ) = xQueueCRReceive( ( pxQueue) , ( pvBuffer ), 0 ); \
\r
479 if( *( pxResult ) == errQUEUE_YIELD ) \
\r
481 crSET_STATE1( ( xHandle ) ); \
\r
482 *( pxResult ) = pdPASS; \
\r
489 crQUEUE_SEND_FROM_ISR(
\r
490 QueueHandle_t pxQueue,
\r
491 void *pvItemToQueue,
\r
492 BaseType_t xCoRoutinePreviouslyWoken
\r
495 * The macro's crQUEUE_SEND_FROM_ISR() and crQUEUE_RECEIVE_FROM_ISR() are the
\r
496 * co-routine equivalent to the xQueueSendFromISR() and xQueueReceiveFromISR()
\r
497 * functions used by tasks.
\r
499 * crQUEUE_SEND_FROM_ISR() and crQUEUE_RECEIVE_FROM_ISR() can only be used to
\r
500 * pass data between a co-routine and and ISR, whereas xQueueSendFromISR() and
\r
501 * xQueueReceiveFromISR() can only be used to pass data between a task and and
\r
504 * crQUEUE_SEND_FROM_ISR can only be called from an ISR to send data to a queue
\r
505 * that is being used from within a co-routine.
\r
507 * See the co-routine section of the WEB documentation for information on
\r
508 * passing data between tasks and co-routines and between ISR's and
\r
511 * @param xQueue The handle to the queue on which the item is to be posted.
\r
513 * @param pvItemToQueue A pointer to the item that is to be placed on the
\r
514 * queue. The size of the items the queue will hold was defined when the
\r
515 * queue was created, so this many bytes will be copied from pvItemToQueue
\r
516 * into the queue storage area.
\r
518 * @param xCoRoutinePreviouslyWoken This is included so an ISR can post onto
\r
519 * the same queue multiple times from a single interrupt. The first call
\r
520 * should always pass in pdFALSE. Subsequent calls should pass in
\r
521 * the value returned from the previous call.
\r
523 * @return pdTRUE if a co-routine was woken by posting onto the queue. This is
\r
524 * used by the ISR to determine if a context switch may be required following
\r
529 // A co-routine that blocks on a queue waiting for characters to be received.
\r
530 static void vReceivingCoRoutine( CoRoutineHandle_t xHandle, UBaseType_t uxIndex )
\r
533 BaseType_t xResult;
\r
535 // All co-routines must start with a call to crSTART().
\r
536 crSTART( xHandle );
\r
540 // Wait for data to become available on the queue. This assumes the
\r
541 // queue xCommsRxQueue has already been created!
\r
542 crQUEUE_RECEIVE( xHandle, xCommsRxQueue, &uxLEDToFlash, portMAX_DELAY, &xResult );
\r
544 // Was a character received?
\r
545 if( xResult == pdPASS )
\r
547 // Process the character here.
\r
551 // All co-routines must end with a call to crEND().
\r
555 // An ISR that uses a queue to send characters received on a serial port to
\r
557 void vUART_ISR( void )
\r
560 BaseType_t xCRWokenByPost = pdFALSE;
\r
562 // We loop around reading characters until there are none left in the UART.
\r
563 while( UART_RX_REG_NOT_EMPTY() )
\r
565 // Obtain the character from the UART.
\r
566 cRxedChar = UART_RX_REG;
\r
568 // Post the character onto a queue. xCRWokenByPost will be pdFALSE
\r
569 // the first time around the loop. If the post causes a co-routine
\r
570 // to be woken (unblocked) then xCRWokenByPost will be set to pdTRUE.
\r
571 // In this manner we can ensure that if more than one co-routine is
\r
572 // blocked on the queue only one is woken by this ISR no matter how
\r
573 // many characters are posted to the queue.
\r
574 xCRWokenByPost = crQUEUE_SEND_FROM_ISR( xCommsRxQueue, &cRxedChar, xCRWokenByPost );
\r
577 * \defgroup crQUEUE_SEND_FROM_ISR crQUEUE_SEND_FROM_ISR
\r
580 #define crQUEUE_SEND_FROM_ISR( pxQueue, pvItemToQueue, xCoRoutinePreviouslyWoken ) xQueueCRSendFromISR( ( pxQueue ), ( pvItemToQueue ), ( xCoRoutinePreviouslyWoken ) )
\r
586 crQUEUE_SEND_FROM_ISR(
\r
587 QueueHandle_t pxQueue,
\r
589 BaseType_t * pxCoRoutineWoken
\r
592 * The macro's crQUEUE_SEND_FROM_ISR() and crQUEUE_RECEIVE_FROM_ISR() are the
\r
593 * co-routine equivalent to the xQueueSendFromISR() and xQueueReceiveFromISR()
\r
594 * functions used by tasks.
\r
596 * crQUEUE_SEND_FROM_ISR() and crQUEUE_RECEIVE_FROM_ISR() can only be used to
\r
597 * pass data between a co-routine and and ISR, whereas xQueueSendFromISR() and
\r
598 * xQueueReceiveFromISR() can only be used to pass data between a task and and
\r
601 * crQUEUE_RECEIVE_FROM_ISR can only be called from an ISR to receive data
\r
602 * from a queue that is being used from within a co-routine (a co-routine
\r
603 * posted to the queue).
\r
605 * See the co-routine section of the WEB documentation for information on
\r
606 * passing data between tasks and co-routines and between ISR's and
\r
609 * @param xQueue The handle to the queue on which the item is to be posted.
\r
611 * @param pvBuffer A pointer to a buffer into which the received item will be
\r
612 * placed. The size of the items the queue will hold was defined when the
\r
613 * queue was created, so this many bytes will be copied from the queue into
\r
616 * @param pxCoRoutineWoken A co-routine may be blocked waiting for space to become
\r
617 * available on the queue. If crQUEUE_RECEIVE_FROM_ISR causes such a
\r
618 * co-routine to unblock *pxCoRoutineWoken will get set to pdTRUE, otherwise
\r
619 * *pxCoRoutineWoken will remain unchanged.
\r
621 * @return pdTRUE an item was successfully received from the queue, otherwise
\r
626 // A co-routine that posts a character to a queue then blocks for a fixed
\r
627 // period. The character is incremented each time.
\r
628 static void vSendingCoRoutine( CoRoutineHandle_t xHandle, UBaseType_t uxIndex )
\r
630 // cChar holds its value while this co-routine is blocked and must therefore
\r
631 // be declared static.
\r
632 static char cCharToTx = 'a';
\r
633 BaseType_t xResult;
\r
635 // All co-routines must start with a call to crSTART().
\r
636 crSTART( xHandle );
\r
640 // Send the next character to the queue.
\r
641 crQUEUE_SEND( xHandle, xCoRoutineQueue, &cCharToTx, NO_DELAY, &xResult );
\r
643 if( xResult == pdPASS )
\r
645 // The character was successfully posted to the queue.
\r
649 // Could not post the character to the queue.
\r
652 // Enable the UART Tx interrupt to cause an interrupt in this
\r
653 // hypothetical UART. The interrupt will obtain the character
\r
654 // from the queue and send it.
\r
655 ENABLE_RX_INTERRUPT();
\r
657 // Increment to the next character then block for a fixed period.
\r
658 // cCharToTx will maintain its value across the delay as it is
\r
659 // declared static.
\r
661 if( cCharToTx > 'x' )
\r
668 // All co-routines must end with a call to crEND().
\r
672 // An ISR that uses a queue to receive characters to send on a UART.
\r
673 void vUART_ISR( void )
\r
676 BaseType_t xCRWokenByPost = pdFALSE;
\r
678 while( UART_TX_REG_EMPTY() )
\r
680 // Are there any characters in the queue waiting to be sent?
\r
681 // xCRWokenByPost will automatically be set to pdTRUE if a co-routine
\r
682 // is woken by the post - ensuring that only a single co-routine is
\r
683 // woken no matter how many times we go around this loop.
\r
684 if( crQUEUE_RECEIVE_FROM_ISR( pxQueue, &cCharToTx, &xCRWokenByPost ) )
\r
686 SEND_CHARACTER( cCharToTx );
\r
690 * \defgroup crQUEUE_RECEIVE_FROM_ISR crQUEUE_RECEIVE_FROM_ISR
\r
693 #define crQUEUE_RECEIVE_FROM_ISR( pxQueue, pvBuffer, pxCoRoutineWoken ) xQueueCRReceiveFromISR( ( pxQueue ), ( pvBuffer ), ( pxCoRoutineWoken ) )
\r
696 * This function is intended for internal use by the co-routine macros only.
\r
697 * The macro nature of the co-routine implementation requires that the
\r
698 * prototype appears here. The function should not be used by application
\r
701 * Removes the current co-routine from its ready list and places it in the
\r
702 * appropriate delayed list.
\r
704 void vCoRoutineAddToDelayedList( TickType_t xTicksToDelay, List_t *pxEventList );
\r
707 * This function is intended for internal use by the queue implementation only.
\r
708 * The function should not be used by application writers.
\r
710 * Removes the highest priority co-routine from the event list and places it in
\r
711 * the pending ready list.
\r
713 BaseType_t xCoRoutineRemoveFromEventList( const List_t *pxEventList );
\r
719 #endif /* CO_ROUTINE_H */
\r