2 FreeRTOS V7.5.3 - Copyright (C) 2013 Real Time Engineers Ltd.
\r
5 VISIT http://www.FreeRTOS.org TO ENSURE YOU ARE USING THE LATEST VERSION.
\r
7 ***************************************************************************
\r
9 * FreeRTOS provides completely free yet professionally developed, *
\r
10 * robust, strictly quality controlled, supported, and cross *
\r
11 * platform software that has become a de facto standard. *
\r
13 * Help yourself get started quickly and support the FreeRTOS *
\r
14 * project by purchasing a FreeRTOS tutorial book, reference *
\r
15 * manual, or both from: http://www.FreeRTOS.org/Documentation *
\r
19 ***************************************************************************
\r
21 This file is part of the FreeRTOS distribution.
\r
23 FreeRTOS is free software; you can redistribute it and/or modify it under
\r
24 the terms of the GNU General Public License (version 2) as published by the
\r
25 Free Software Foundation >>!AND MODIFIED BY!<< the FreeRTOS exception.
\r
27 >>! NOTE: The modification to the GPL is included to allow you to distribute
\r
28 >>! a combined work that includes FreeRTOS without being obliged to provide
\r
29 >>! the source code for proprietary components outside of the FreeRTOS
\r
32 FreeRTOS is distributed in the hope that it will be useful, but WITHOUT ANY
\r
33 WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
\r
34 FOR A PARTICULAR PURPOSE. Full license text is available from the following
\r
35 link: http://www.freertos.org/a00114.html
\r
39 ***************************************************************************
\r
41 * Having a problem? Start by reading the FAQ "My application does *
\r
42 * not run, what could be wrong?" *
\r
44 * http://www.FreeRTOS.org/FAQHelp.html *
\r
46 ***************************************************************************
\r
48 http://www.FreeRTOS.org - Documentation, books, training, latest versions,
\r
49 license and Real Time Engineers Ltd. contact details.
\r
51 http://www.FreeRTOS.org/plus - A selection of FreeRTOS ecosystem products,
\r
52 including FreeRTOS+Trace - an indispensable productivity tool, a DOS
\r
53 compatible FAT file system, and our tiny thread aware UDP/IP stack.
\r
55 http://www.OpenRTOS.com - Real Time Engineers ltd license FreeRTOS to High
\r
56 Integrity Systems to sell under the OpenRTOS brand. Low cost OpenRTOS
\r
57 licenses offer ticketed support, indemnification and middleware.
\r
59 http://www.SafeRTOS.com - High Integrity Systems also provide a safety
\r
60 engineered and independently SIL3 certified version for use in safety and
\r
61 mission critical applications that require provable dependability.
\r
69 /* Defining MPU_WRAPPERS_INCLUDED_FROM_API_FILE prevents task.h from redefining
\r
70 all the API functions to use the MPU wrappers. That should only be done when
\r
71 task.h is included from an application file. */
\r
72 #define MPU_WRAPPERS_INCLUDED_FROM_API_FILE
\r
74 #include "FreeRTOS.h"
\r
78 #if ( configUSE_CO_ROUTINES == 1 )
\r
79 #include "croutine.h"
\r
82 /* Lint e961 and e750 are suppressed as a MISRA exception justified because the
\r
83 MPU ports require MPU_WRAPPERS_INCLUDED_FROM_API_FILE to be defined for the
\r
84 header files above, but not in this file, in order to generate the correct
\r
85 privileged Vs unprivileged linkage and placement. */
\r
86 #undef MPU_WRAPPERS_INCLUDED_FROM_API_FILE /*lint !e961 !e750. */
\r
89 /* Constants used with the cRxLock and xTxLock structure members. */
\r
90 #define queueUNLOCKED ( ( signed portBASE_TYPE ) -1 )
\r
91 #define queueLOCKED_UNMODIFIED ( ( signed portBASE_TYPE ) 0 )
\r
93 /* When the xQUEUE structure is used to represent a base queue its pcHead and
\r
94 pcTail members are used as pointers into the queue storage area. When the
\r
95 xQUEUE structure is used to represent a mutex pcHead and pcTail pointers are
\r
96 not necessary, and the pcHead pointer is set to NULL to indicate that the
\r
97 pcTail pointer actually points to the mutex holder (if any). Map alternative
\r
98 names to the pcHead and pcTail structure members to ensure the readability of
\r
99 the code is maintained despite this dual use of two structure members. An
\r
100 alternative implementation would be to use a union, but use of a union is
\r
101 against the coding standard (although an exception to the standard has been
\r
102 permitted where the dual use also significantly changes the type of the
\r
103 structure member). */
\r
104 #define pxMutexHolder pcTail
\r
105 #define uxQueueType pcHead
\r
106 #define queueQUEUE_IS_MUTEX NULL
\r
108 /* Semaphores do not actually store or copy data, so have an item size of
\r
110 #define queueSEMAPHORE_QUEUE_ITEM_LENGTH ( ( unsigned portBASE_TYPE ) 0 )
\r
111 #define queueMUTEX_GIVE_BLOCK_TIME ( ( portTickType ) 0U )
\r
113 #if( configUSE_PREEMPTION == 0 )
\r
114 /* If the cooperative scheduler is being used then a yield should not be
\r
115 performed just because a higher priority task has been woken. */
\r
116 #define queueYIELD_IF_USING_PREEMPTION()
\r
118 #define queueYIELD_IF_USING_PREEMPTION() portYIELD_WITHIN_API()
\r
122 * Definition of the queue used by the scheduler.
\r
123 * Items are queued by copy, not reference.
\r
125 typedef struct QueueDefinition
\r
127 signed char *pcHead; /*< Points to the beginning of the queue storage area. */
\r
128 signed char *pcTail; /*< Points to the byte at the end of the queue storage area. Once more byte is allocated than necessary to store the queue items, this is used as a marker. */
\r
130 signed char *pcWriteTo; /*< Points to the free next place in the storage area. */
\r
132 union /* Use of a union is an exception to the coding standard to ensure two mutually exclusive structure members don't appear simultaneously (wasting RAM). */
\r
134 signed char *pcReadFrom; /*< Points to the last place that a queued item was read from when the structure is used as a queue. */
\r
135 unsigned portBASE_TYPE uxRecursiveCallCount;/*< Maintains a count of the numebr of times a recursive mutex has been recursively 'taken' when the structure is used as a mutex. */
\r
138 xList xTasksWaitingToSend; /*< List of tasks that are blocked waiting to post onto this queue. Stored in priority order. */
\r
139 xList xTasksWaitingToReceive; /*< List of tasks that are blocked waiting to read from this queue. Stored in priority order. */
\r
141 volatile unsigned portBASE_TYPE uxMessagesWaiting;/*< The number of items currently in the queue. */
\r
142 unsigned portBASE_TYPE uxLength; /*< The length of the queue defined as the number of items it will hold, not the number of bytes. */
\r
143 unsigned portBASE_TYPE uxItemSize; /*< The size of each items that the queue will hold. */
\r
145 volatile signed portBASE_TYPE xRxLock; /*< Stores the number of items received from the queue (removed from the queue) while the queue was locked. Set to queueUNLOCKED when the queue is not locked. */
\r
146 volatile signed portBASE_TYPE xTxLock; /*< Stores the number of items transmitted to the queue (added to the queue) while the queue was locked. Set to queueUNLOCKED when the queue is not locked. */
\r
148 #if ( configUSE_TRACE_FACILITY == 1 )
\r
149 unsigned char ucQueueNumber;
\r
150 unsigned char ucQueueType;
\r
153 #if ( configUSE_QUEUE_SETS == 1 )
\r
154 struct QueueDefinition *pxQueueSetContainer;
\r
158 /*-----------------------------------------------------------*/
\r
161 * The queue registry is just a means for kernel aware debuggers to locate
\r
162 * queue structures. It has no other purpose so is an optional component.
\r
164 #if ( configQUEUE_REGISTRY_SIZE > 0 )
\r
166 /* The type stored within the queue registry array. This allows a name
\r
167 to be assigned to each queue making kernel aware debugging a little
\r
168 more user friendly. */
\r
169 typedef struct QUEUE_REGISTRY_ITEM
\r
171 signed char *pcQueueName;
\r
172 xQueueHandle xHandle;
\r
173 } xQueueRegistryItem;
\r
175 /* The queue registry is simply an array of xQueueRegistryItem structures.
\r
176 The pcQueueName member of a structure being NULL is indicative of the
\r
177 array position being vacant. */
\r
178 xQueueRegistryItem xQueueRegistry[ configQUEUE_REGISTRY_SIZE ];
\r
180 #endif /* configQUEUE_REGISTRY_SIZE */
\r
183 * Unlocks a queue locked by a call to prvLockQueue. Locking a queue does not
\r
184 * prevent an ISR from adding or removing items to the queue, but does prevent
\r
185 * an ISR from removing tasks from the queue event lists. If an ISR finds a
\r
186 * queue is locked it will instead increment the appropriate queue lock count
\r
187 * to indicate that a task may require unblocking. When the queue in unlocked
\r
188 * these lock counts are inspected, and the appropriate action taken.
\r
190 static void prvUnlockQueue( xQUEUE *pxQueue ) PRIVILEGED_FUNCTION;
\r
193 * Uses a critical section to determine if there is any data in a queue.
\r
195 * @return pdTRUE if the queue contains no items, otherwise pdFALSE.
\r
197 static signed portBASE_TYPE prvIsQueueEmpty( const xQUEUE *pxQueue ) PRIVILEGED_FUNCTION;
\r
200 * Uses a critical section to determine if there is any space in a queue.
\r
202 * @return pdTRUE if there is no space, otherwise pdFALSE;
\r
204 static signed portBASE_TYPE prvIsQueueFull( const xQUEUE *pxQueue ) PRIVILEGED_FUNCTION;
\r
207 * Copies an item into the queue, either at the front of the queue or the
\r
208 * back of the queue.
\r
210 static void prvCopyDataToQueue( xQUEUE *pxQueue, const void *pvItemToQueue, portBASE_TYPE xPosition ) PRIVILEGED_FUNCTION;
\r
213 * Copies an item out of a queue.
\r
215 static void prvCopyDataFromQueue( xQUEUE * const pxQueue, void * const pvBuffer ) PRIVILEGED_FUNCTION;
\r
217 #if ( configUSE_QUEUE_SETS == 1 )
\r
219 * Checks to see if a queue is a member of a queue set, and if so, notifies
\r
220 * the queue set that the queue contains data.
\r
222 static portBASE_TYPE prvNotifyQueueSetContainer( const xQUEUE * const pxQueue, portBASE_TYPE xCopyPosition ) PRIVILEGED_FUNCTION;
\r
225 /*-----------------------------------------------------------*/
\r
228 * Macro to mark a queue as locked. Locking a queue prevents an ISR from
\r
229 * accessing the queue event lists.
\r
231 #define prvLockQueue( pxQueue ) \
\r
232 taskENTER_CRITICAL(); \
\r
234 if( ( pxQueue )->xRxLock == queueUNLOCKED ) \
\r
236 ( pxQueue )->xRxLock = queueLOCKED_UNMODIFIED; \
\r
238 if( ( pxQueue )->xTxLock == queueUNLOCKED ) \
\r
240 ( pxQueue )->xTxLock = queueLOCKED_UNMODIFIED; \
\r
243 taskEXIT_CRITICAL()
\r
244 /*-----------------------------------------------------------*/
\r
246 portBASE_TYPE xQueueGenericReset( xQueueHandle xQueue, portBASE_TYPE xNewQueue )
\r
248 xQUEUE * const pxQueue = ( xQUEUE * ) xQueue;
\r
250 configASSERT( pxQueue );
\r
252 taskENTER_CRITICAL();
\r
254 pxQueue->pcTail = pxQueue->pcHead + ( pxQueue->uxLength * pxQueue->uxItemSize );
\r
255 pxQueue->uxMessagesWaiting = ( unsigned portBASE_TYPE ) 0U;
\r
256 pxQueue->pcWriteTo = pxQueue->pcHead;
\r
257 pxQueue->u.pcReadFrom = pxQueue->pcHead + ( ( pxQueue->uxLength - ( unsigned portBASE_TYPE ) 1U ) * pxQueue->uxItemSize );
\r
258 pxQueue->xRxLock = queueUNLOCKED;
\r
259 pxQueue->xTxLock = queueUNLOCKED;
\r
261 if( xNewQueue == pdFALSE )
\r
263 /* If there are tasks blocked waiting to read from the queue, then
\r
264 the tasks will remain blocked as after this function exits the queue
\r
265 will still be empty. If there are tasks blocked waiting to write to
\r
266 the queue, then one should be unblocked as after this function exits
\r
267 it will be possible to write to it. */
\r
268 if( listLIST_IS_EMPTY( &( pxQueue->xTasksWaitingToSend ) ) == pdFALSE )
\r
270 if( xTaskRemoveFromEventList( &( pxQueue->xTasksWaitingToSend ) ) == pdTRUE )
\r
272 queueYIELD_IF_USING_PREEMPTION();
\r
278 /* Ensure the event queues start in the correct state. */
\r
279 vListInitialise( &( pxQueue->xTasksWaitingToSend ) );
\r
280 vListInitialise( &( pxQueue->xTasksWaitingToReceive ) );
\r
283 taskEXIT_CRITICAL();
\r
285 /* A value is returned for calling semantic consistency with previous
\r
289 /*-----------------------------------------------------------*/
\r
291 xQueueHandle xQueueGenericCreate( unsigned portBASE_TYPE uxQueueLength, unsigned portBASE_TYPE uxItemSize, unsigned char ucQueueType )
\r
293 xQUEUE *pxNewQueue;
\r
294 size_t xQueueSizeInBytes;
\r
295 xQueueHandle xReturn = NULL;
\r
297 /* Remove compiler warnings about unused parameters should
\r
298 configUSE_TRACE_FACILITY not be set to 1. */
\r
299 ( void ) ucQueueType;
\r
301 /* Allocate the new queue structure. */
\r
302 if( uxQueueLength > ( unsigned portBASE_TYPE ) 0 )
\r
304 pxNewQueue = ( xQUEUE * ) pvPortMalloc( sizeof( xQUEUE ) );
\r
305 if( pxNewQueue != NULL )
\r
307 /* Create the list of pointers to queue items. The queue is one byte
\r
308 longer than asked for to make wrap checking easier/faster. */
\r
309 xQueueSizeInBytes = ( size_t ) ( uxQueueLength * uxItemSize ) + ( size_t ) 1; /*lint !e961 MISRA exception as the casts are only redundant for some ports. */
\r
311 pxNewQueue->pcHead = ( signed char * ) pvPortMalloc( xQueueSizeInBytes );
\r
312 if( pxNewQueue->pcHead != NULL )
\r
314 /* Initialise the queue members as described above where the
\r
315 queue type is defined. */
\r
316 pxNewQueue->uxLength = uxQueueLength;
\r
317 pxNewQueue->uxItemSize = uxItemSize;
\r
318 ( void ) xQueueGenericReset( pxNewQueue, pdTRUE );
\r
320 #if ( configUSE_TRACE_FACILITY == 1 )
\r
322 pxNewQueue->ucQueueType = ucQueueType;
\r
324 #endif /* configUSE_TRACE_FACILITY */
\r
326 #if( configUSE_QUEUE_SETS == 1 )
\r
328 pxNewQueue->pxQueueSetContainer = NULL;
\r
330 #endif /* configUSE_QUEUE_SETS */
\r
332 traceQUEUE_CREATE( pxNewQueue );
\r
333 xReturn = pxNewQueue;
\r
337 traceQUEUE_CREATE_FAILED( ucQueueType );
\r
338 vPortFree( pxNewQueue );
\r
343 configASSERT( xReturn );
\r
347 /*-----------------------------------------------------------*/
\r
349 #if ( configUSE_MUTEXES == 1 )
\r
351 xQueueHandle xQueueCreateMutex( unsigned char ucQueueType )
\r
353 xQUEUE *pxNewQueue;
\r
355 /* Prevent compiler warnings about unused parameters if
\r
356 configUSE_TRACE_FACILITY does not equal 1. */
\r
357 ( void ) ucQueueType;
\r
359 /* Allocate the new queue structure. */
\r
360 pxNewQueue = ( xQUEUE * ) pvPortMalloc( sizeof( xQUEUE ) );
\r
361 if( pxNewQueue != NULL )
\r
363 /* Information required for priority inheritance. */
\r
364 pxNewQueue->pxMutexHolder = NULL;
\r
365 pxNewQueue->uxQueueType = queueQUEUE_IS_MUTEX;
\r
367 /* Queues used as a mutex no data is actually copied into or out
\r
369 pxNewQueue->pcWriteTo = NULL;
\r
370 pxNewQueue->u.pcReadFrom = NULL;
\r
372 /* Each mutex has a length of 1 (like a binary semaphore) and
\r
373 an item size of 0 as nothing is actually copied into or out
\r
375 pxNewQueue->uxMessagesWaiting = ( unsigned portBASE_TYPE ) 0U;
\r
376 pxNewQueue->uxLength = ( unsigned portBASE_TYPE ) 1U;
\r
377 pxNewQueue->uxItemSize = ( unsigned portBASE_TYPE ) 0U;
\r
378 pxNewQueue->xRxLock = queueUNLOCKED;
\r
379 pxNewQueue->xTxLock = queueUNLOCKED;
\r
381 #if ( configUSE_TRACE_FACILITY == 1 )
\r
383 pxNewQueue->ucQueueType = ucQueueType;
\r
387 #if ( configUSE_QUEUE_SETS == 1 )
\r
389 pxNewQueue->pxQueueSetContainer = NULL;
\r
393 /* Ensure the event queues start with the correct state. */
\r
394 vListInitialise( &( pxNewQueue->xTasksWaitingToSend ) );
\r
395 vListInitialise( &( pxNewQueue->xTasksWaitingToReceive ) );
\r
397 traceCREATE_MUTEX( pxNewQueue );
\r
399 /* Start with the semaphore in the expected state. */
\r
400 ( void ) xQueueGenericSend( pxNewQueue, NULL, ( portTickType ) 0U, queueSEND_TO_BACK );
\r
404 traceCREATE_MUTEX_FAILED();
\r
407 configASSERT( pxNewQueue );
\r
411 #endif /* configUSE_MUTEXES */
\r
412 /*-----------------------------------------------------------*/
\r
414 #if ( ( configUSE_MUTEXES == 1 ) && ( INCLUDE_xSemaphoreGetMutexHolder == 1 ) )
\r
416 void* xQueueGetMutexHolder( xQueueHandle xSemaphore )
\r
420 /* This function is called by xSemaphoreGetMutexHolder(), and should not
\r
421 be called directly. Note: This is is a good way of determining if the
\r
422 calling task is the mutex holder, but not a good way of determining the
\r
423 identity of the mutex holder, as the holder may change between the
\r
424 following critical section exiting and the function returning. */
\r
425 taskENTER_CRITICAL();
\r
427 if( ( ( xQUEUE * ) xSemaphore )->uxQueueType == queueQUEUE_IS_MUTEX )
\r
429 pxReturn = ( void * ) ( ( xQUEUE * ) xSemaphore )->pxMutexHolder;
\r
436 taskEXIT_CRITICAL();
\r
442 /*-----------------------------------------------------------*/
\r
444 #if ( configUSE_RECURSIVE_MUTEXES == 1 )
\r
446 portBASE_TYPE xQueueGiveMutexRecursive( xQueueHandle xMutex )
\r
448 portBASE_TYPE xReturn;
\r
449 xQUEUE * const pxMutex = ( xQUEUE * ) xMutex;
\r
451 configASSERT( pxMutex );
\r
453 /* If this is the task that holds the mutex then pxMutexHolder will not
\r
454 change outside of this task. If this task does not hold the mutex then
\r
455 pxMutexHolder can never coincidentally equal the tasks handle, and as
\r
456 this is the only condition we are interested in it does not matter if
\r
457 pxMutexHolder is accessed simultaneously by another task. Therefore no
\r
458 mutual exclusion is required to test the pxMutexHolder variable. */
\r
459 if( pxMutex->pxMutexHolder == ( void * ) xTaskGetCurrentTaskHandle() ) /*lint !e961 Not a redundant cast as xTaskHandle is a typedef. */
\r
461 traceGIVE_MUTEX_RECURSIVE( pxMutex );
\r
463 /* uxRecursiveCallCount cannot be zero if pxMutexHolder is equal to
\r
464 the task handle, therefore no underflow check is required. Also,
\r
465 uxRecursiveCallCount is only modified by the mutex holder, and as
\r
466 there can only be one, no mutual exclusion is required to modify the
\r
467 uxRecursiveCallCount member. */
\r
468 ( pxMutex->u.uxRecursiveCallCount )--;
\r
470 /* Have we unwound the call count? */
\r
471 if( pxMutex->u.uxRecursiveCallCount == ( unsigned portBASE_TYPE ) 0 )
\r
473 /* Return the mutex. This will automatically unblock any other
\r
474 task that might be waiting to access the mutex. */
\r
475 ( void ) xQueueGenericSend( pxMutex, NULL, queueMUTEX_GIVE_BLOCK_TIME, queueSEND_TO_BACK );
\r
482 /* We cannot give the mutex because we are not the holder. */
\r
485 traceGIVE_MUTEX_RECURSIVE_FAILED( pxMutex );
\r
491 #endif /* configUSE_RECURSIVE_MUTEXES */
\r
492 /*-----------------------------------------------------------*/
\r
494 #if ( configUSE_RECURSIVE_MUTEXES == 1 )
\r
496 portBASE_TYPE xQueueTakeMutexRecursive( xQueueHandle xMutex, portTickType xBlockTime )
\r
498 portBASE_TYPE xReturn;
\r
499 xQUEUE * const pxMutex = ( xQUEUE * ) xMutex;
\r
501 configASSERT( pxMutex );
\r
503 /* Comments regarding mutual exclusion as per those within
\r
504 xQueueGiveMutexRecursive(). */
\r
506 traceTAKE_MUTEX_RECURSIVE( pxMutex );
\r
508 if( pxMutex->pxMutexHolder == ( void * ) xTaskGetCurrentTaskHandle() ) /*lint !e961 Cast is not redundant as xTaskHandle is a typedef. */
\r
510 ( pxMutex->u.uxRecursiveCallCount )++;
\r
515 xReturn = xQueueGenericReceive( pxMutex, NULL, xBlockTime, pdFALSE );
\r
517 /* pdPASS will only be returned if we successfully obtained the mutex,
\r
518 we may have blocked to reach here. */
\r
519 if( xReturn == pdPASS )
\r
521 ( pxMutex->u.uxRecursiveCallCount )++;
\r
525 traceTAKE_MUTEX_RECURSIVE_FAILED( pxMutex );
\r
532 #endif /* configUSE_RECURSIVE_MUTEXES */
\r
533 /*-----------------------------------------------------------*/
\r
535 #if ( configUSE_COUNTING_SEMAPHORES == 1 )
\r
537 xQueueHandle xQueueCreateCountingSemaphore( unsigned portBASE_TYPE uxCountValue, unsigned portBASE_TYPE uxInitialCount )
\r
539 xQueueHandle xHandle;
\r
541 xHandle = xQueueGenericCreate( uxCountValue, queueSEMAPHORE_QUEUE_ITEM_LENGTH, queueQUEUE_TYPE_COUNTING_SEMAPHORE );
\r
543 if( xHandle != NULL )
\r
545 ( ( xQUEUE * ) xHandle )->uxMessagesWaiting = uxInitialCount;
\r
547 traceCREATE_COUNTING_SEMAPHORE();
\r
551 traceCREATE_COUNTING_SEMAPHORE_FAILED();
\r
554 configASSERT( xHandle );
\r
558 #endif /* configUSE_COUNTING_SEMAPHORES */
\r
559 /*-----------------------------------------------------------*/
\r
561 signed portBASE_TYPE xQueueGenericSend( xQueueHandle xQueue, const void * const pvItemToQueue, portTickType xTicksToWait, portBASE_TYPE xCopyPosition )
\r
563 signed portBASE_TYPE xEntryTimeSet = pdFALSE;
\r
564 xTimeOutType xTimeOut;
\r
565 xQUEUE * const pxQueue = ( xQUEUE * ) xQueue;
\r
567 configASSERT( pxQueue );
\r
568 configASSERT( !( ( pvItemToQueue == NULL ) && ( pxQueue->uxItemSize != ( unsigned portBASE_TYPE ) 0U ) ) );
\r
569 configASSERT( !( ( xCopyPosition == queueOVERWRITE ) && ( pxQueue->uxLength != 1 ) ) );
\r
571 /* This function relaxes the coding standard somewhat to allow return
\r
572 statements within the function itself. This is done in the interest
\r
573 of execution time efficiency. */
\r
576 taskENTER_CRITICAL();
\r
578 /* Is there room on the queue now? The running task must be
\r
579 the highest priority task wanting to access the queue. If
\r
580 the head item in the queue is to be overwritten then it does
\r
581 not matter if the queue is full. */
\r
582 if( ( pxQueue->uxMessagesWaiting < pxQueue->uxLength ) || ( xCopyPosition == queueOVERWRITE ) )
\r
584 traceQUEUE_SEND( pxQueue );
\r
585 prvCopyDataToQueue( pxQueue, pvItemToQueue, xCopyPosition );
\r
587 #if ( configUSE_QUEUE_SETS == 1 )
\r
589 if( pxQueue->pxQueueSetContainer != NULL )
\r
591 if( prvNotifyQueueSetContainer( pxQueue, xCopyPosition ) == pdTRUE )
\r
593 /* The queue is a member of a queue set, and posting
\r
594 to the queue set caused a higher priority task to
\r
595 unblock. A context switch is required. */
\r
596 queueYIELD_IF_USING_PREEMPTION();
\r
601 /* If there was a task waiting for data to arrive on the
\r
602 queue then unblock it now. */
\r
603 if( listLIST_IS_EMPTY( &( pxQueue->xTasksWaitingToReceive ) ) == pdFALSE )
\r
605 if( xTaskRemoveFromEventList( &( pxQueue->xTasksWaitingToReceive ) ) == pdTRUE )
\r
607 /* The unblocked task has a priority higher than
\r
608 our own so yield immediately. Yes it is ok to
\r
609 do this from within the critical section - the
\r
610 kernel takes care of that. */
\r
611 queueYIELD_IF_USING_PREEMPTION();
\r
616 #else /* configUSE_QUEUE_SETS */
\r
618 /* If there was a task waiting for data to arrive on the
\r
619 queue then unblock it now. */
\r
620 if( listLIST_IS_EMPTY( &( pxQueue->xTasksWaitingToReceive ) ) == pdFALSE )
\r
622 if( xTaskRemoveFromEventList( &( pxQueue->xTasksWaitingToReceive ) ) == pdTRUE )
\r
624 /* The unblocked task has a priority higher than
\r
625 our own so yield immediately. Yes it is ok to do
\r
626 this from within the critical section - the kernel
\r
627 takes care of that. */
\r
628 queueYIELD_IF_USING_PREEMPTION();
\r
632 #endif /* configUSE_QUEUE_SETS */
\r
634 taskEXIT_CRITICAL();
\r
636 /* Return to the original privilege level before exiting the
\r
642 if( xTicksToWait == ( portTickType ) 0 )
\r
644 /* The queue was full and no block time is specified (or
\r
645 the block time has expired) so leave now. */
\r
646 taskEXIT_CRITICAL();
\r
648 /* Return to the original privilege level before exiting
\r
650 traceQUEUE_SEND_FAILED( pxQueue );
\r
651 return errQUEUE_FULL;
\r
653 else if( xEntryTimeSet == pdFALSE )
\r
655 /* The queue was full and a block time was specified so
\r
656 configure the timeout structure. */
\r
657 vTaskSetTimeOutState( &xTimeOut );
\r
658 xEntryTimeSet = pdTRUE;
\r
662 /* Entry time was already set. */
\r
666 taskEXIT_CRITICAL();
\r
668 /* Interrupts and other tasks can send to and receive from the queue
\r
669 now the critical section has been exited. */
\r
672 prvLockQueue( pxQueue );
\r
674 /* Update the timeout state to see if it has expired yet. */
\r
675 if( xTaskCheckForTimeOut( &xTimeOut, &xTicksToWait ) == pdFALSE )
\r
677 if( prvIsQueueFull( pxQueue ) != pdFALSE )
\r
679 traceBLOCKING_ON_QUEUE_SEND( pxQueue );
\r
680 vTaskPlaceOnEventList( &( pxQueue->xTasksWaitingToSend ), xTicksToWait );
\r
682 /* Unlocking the queue means queue events can effect the
\r
683 event list. It is possible that interrupts occurring now
\r
684 remove this task from the event list again - but as the
\r
685 scheduler is suspended the task will go onto the pending
\r
686 ready last instead of the actual ready list. */
\r
687 prvUnlockQueue( pxQueue );
\r
689 /* Resuming the scheduler will move tasks from the pending
\r
690 ready list into the ready list - so it is feasible that this
\r
691 task is already in a ready list before it yields - in which
\r
692 case the yield will not cause a context switch unless there
\r
693 is also a higher priority task in the pending ready list. */
\r
694 if( xTaskResumeAll() == pdFALSE )
\r
696 portYIELD_WITHIN_API();
\r
702 prvUnlockQueue( pxQueue );
\r
703 ( void ) xTaskResumeAll();
\r
708 /* The timeout has expired. */
\r
709 prvUnlockQueue( pxQueue );
\r
710 ( void ) xTaskResumeAll();
\r
712 /* Return to the original privilege level before exiting the
\r
714 traceQUEUE_SEND_FAILED( pxQueue );
\r
715 return errQUEUE_FULL;
\r
719 /*-----------------------------------------------------------*/
\r
721 #if ( configUSE_ALTERNATIVE_API == 1 )
\r
723 signed portBASE_TYPE xQueueAltGenericSend( xQueueHandle xQueue, const void * const pvItemToQueue, portTickType xTicksToWait, portBASE_TYPE xCopyPosition )
\r
725 signed portBASE_TYPE xEntryTimeSet = pdFALSE;
\r
726 xTimeOutType xTimeOut;
\r
727 xQUEUE * const pxQueue = ( xQUEUE * ) xQueue;
\r
729 configASSERT( pxQueue );
\r
730 configASSERT( !( ( pvItemToQueue == NULL ) && ( pxQueue->uxItemSize != ( unsigned portBASE_TYPE ) 0U ) ) );
\r
734 taskENTER_CRITICAL();
\r
736 /* Is there room on the queue now? To be running we must be
\r
737 the highest priority task wanting to access the queue. */
\r
738 if( pxQueue->uxMessagesWaiting < pxQueue->uxLength )
\r
740 traceQUEUE_SEND( pxQueue );
\r
741 prvCopyDataToQueue( pxQueue, pvItemToQueue, xCopyPosition );
\r
743 /* If there was a task waiting for data to arrive on the
\r
744 queue then unblock it now. */
\r
745 if( listLIST_IS_EMPTY( &( pxQueue->xTasksWaitingToReceive ) ) == pdFALSE )
\r
747 if( xTaskRemoveFromEventList( &( pxQueue->xTasksWaitingToReceive ) ) == pdTRUE )
\r
749 /* The unblocked task has a priority higher than
\r
750 our own so yield immediately. */
\r
751 portYIELD_WITHIN_API();
\r
755 taskEXIT_CRITICAL();
\r
760 if( xTicksToWait == ( portTickType ) 0 )
\r
762 taskEXIT_CRITICAL();
\r
763 return errQUEUE_FULL;
\r
765 else if( xEntryTimeSet == pdFALSE )
\r
767 vTaskSetTimeOutState( &xTimeOut );
\r
768 xEntryTimeSet = pdTRUE;
\r
772 taskEXIT_CRITICAL();
\r
774 taskENTER_CRITICAL();
\r
776 if( xTaskCheckForTimeOut( &xTimeOut, &xTicksToWait ) == pdFALSE )
\r
778 if( prvIsQueueFull( pxQueue ) != pdFALSE )
\r
780 traceBLOCKING_ON_QUEUE_SEND( pxQueue );
\r
781 vTaskPlaceOnEventList( &( pxQueue->xTasksWaitingToSend ), xTicksToWait );
\r
782 portYIELD_WITHIN_API();
\r
787 taskEXIT_CRITICAL();
\r
788 traceQUEUE_SEND_FAILED( pxQueue );
\r
789 return errQUEUE_FULL;
\r
792 taskEXIT_CRITICAL();
\r
796 #endif /* configUSE_ALTERNATIVE_API */
\r
797 /*-----------------------------------------------------------*/
\r
799 #if ( configUSE_ALTERNATIVE_API == 1 )
\r
801 signed portBASE_TYPE xQueueAltGenericReceive( xQueueHandle xQueue, void * const pvBuffer, portTickType xTicksToWait, portBASE_TYPE xJustPeeking )
\r
803 signed portBASE_TYPE xEntryTimeSet = pdFALSE;
\r
804 xTimeOutType xTimeOut;
\r
805 signed char *pcOriginalReadPosition;
\r
806 xQUEUE * const pxQueue = ( xQUEUE * ) xQueue;
\r
808 configASSERT( pxQueue );
\r
809 configASSERT( !( ( pvBuffer == NULL ) && ( pxQueue->uxItemSize != ( unsigned portBASE_TYPE ) 0U ) ) );
\r
813 taskENTER_CRITICAL();
\r
815 if( pxQueue->uxMessagesWaiting > ( unsigned portBASE_TYPE ) 0 )
\r
817 /* Remember our read position in case we are just peeking. */
\r
818 pcOriginalReadPosition = pxQueue->u.pcReadFrom;
\r
820 prvCopyDataFromQueue( pxQueue, pvBuffer );
\r
822 if( xJustPeeking == pdFALSE )
\r
824 traceQUEUE_RECEIVE( pxQueue );
\r
826 /* Data is actually being removed (not just peeked). */
\r
827 --( pxQueue->uxMessagesWaiting );
\r
829 #if ( configUSE_MUTEXES == 1 )
\r
831 if( pxQueue->uxQueueType == queueQUEUE_IS_MUTEX )
\r
833 /* Record the information required to implement
\r
834 priority inheritance should it become necessary. */
\r
835 pxQueue->pxMutexHolder = ( signed char * ) xTaskGetCurrentTaskHandle();
\r
840 if( listLIST_IS_EMPTY( &( pxQueue->xTasksWaitingToSend ) ) == pdFALSE )
\r
842 if( xTaskRemoveFromEventList( &( pxQueue->xTasksWaitingToSend ) ) == pdTRUE )
\r
844 portYIELD_WITHIN_API();
\r
850 traceQUEUE_PEEK( pxQueue );
\r
852 /* We are not removing the data, so reset our read
\r
854 pxQueue->u.pcReadFrom = pcOriginalReadPosition;
\r
856 /* The data is being left in the queue, so see if there are
\r
857 any other tasks waiting for the data. */
\r
858 if( listLIST_IS_EMPTY( &( pxQueue->xTasksWaitingToReceive ) ) == pdFALSE )
\r
860 /* Tasks that are removed from the event list will get added to
\r
861 the pending ready list as the scheduler is still suspended. */
\r
862 if( xTaskRemoveFromEventList( &( pxQueue->xTasksWaitingToReceive ) ) != pdFALSE )
\r
864 /* The task waiting has a higher priority than this task. */
\r
865 portYIELD_WITHIN_API();
\r
871 taskEXIT_CRITICAL();
\r
876 if( xTicksToWait == ( portTickType ) 0 )
\r
878 taskEXIT_CRITICAL();
\r
879 traceQUEUE_RECEIVE_FAILED( pxQueue );
\r
880 return errQUEUE_EMPTY;
\r
882 else if( xEntryTimeSet == pdFALSE )
\r
884 vTaskSetTimeOutState( &xTimeOut );
\r
885 xEntryTimeSet = pdTRUE;
\r
889 taskEXIT_CRITICAL();
\r
891 taskENTER_CRITICAL();
\r
893 if( xTaskCheckForTimeOut( &xTimeOut, &xTicksToWait ) == pdFALSE )
\r
895 if( prvIsQueueEmpty( pxQueue ) != pdFALSE )
\r
897 traceBLOCKING_ON_QUEUE_RECEIVE( pxQueue );
\r
899 #if ( configUSE_MUTEXES == 1 )
\r
901 if( pxQueue->uxQueueType == queueQUEUE_IS_MUTEX )
\r
903 portENTER_CRITICAL();
\r
905 vTaskPriorityInherit( ( void * ) pxQueue->pxMutexHolder );
\r
907 portEXIT_CRITICAL();
\r
912 vTaskPlaceOnEventList( &( pxQueue->xTasksWaitingToReceive ), xTicksToWait );
\r
913 portYIELD_WITHIN_API();
\r
918 taskEXIT_CRITICAL();
\r
919 traceQUEUE_RECEIVE_FAILED( pxQueue );
\r
920 return errQUEUE_EMPTY;
\r
923 taskEXIT_CRITICAL();
\r
928 #endif /* configUSE_ALTERNATIVE_API */
\r
929 /*-----------------------------------------------------------*/
\r
931 signed portBASE_TYPE xQueueGenericSendFromISR( xQueueHandle xQueue, const void * const pvItemToQueue, signed portBASE_TYPE *pxHigherPriorityTaskWoken, portBASE_TYPE xCopyPosition )
\r
933 signed portBASE_TYPE xReturn;
\r
934 unsigned portBASE_TYPE uxSavedInterruptStatus;
\r
935 xQUEUE * const pxQueue = ( xQUEUE * ) xQueue;
\r
937 configASSERT( pxQueue );
\r
938 configASSERT( !( ( pvItemToQueue == NULL ) && ( pxQueue->uxItemSize != ( unsigned portBASE_TYPE ) 0U ) ) );
\r
939 configASSERT( !( ( xCopyPosition == queueOVERWRITE ) && ( pxQueue->uxLength != 1 ) ) );
\r
941 /* RTOS ports that support interrupt nesting have the concept of a maximum
\r
942 system call (or maximum API call) interrupt priority. Interrupts that are
\r
943 above the maximum system call priority are keep permanently enabled, even
\r
944 when the RTOS kernel is in a critical section, but cannot make any calls to
\r
945 FreeRTOS API functions. If configASSERT() is defined in FreeRTOSConfig.h
\r
946 then portASSERT_IF_INTERRUPT_PRIORITY_INVALID() will result in an assertion
\r
947 failure if a FreeRTOS API function is called from an interrupt that has been
\r
948 assigned a priority above the configured maximum system call priority.
\r
949 Only FreeRTOS functions that end in FromISR can be called from interrupts
\r
950 that have been assigned a priority at or (logically) below the maximum
\r
951 system call interrupt priority. FreeRTOS maintains a separate interrupt
\r
952 safe API to ensure interrupt entry is as fast and as simple as possible.
\r
953 More information (albeit Cortex-M specific) is provided on the following
\r
954 link: http://www.freertos.org/RTOS-Cortex-M3-M4.html */
\r
955 portASSERT_IF_INTERRUPT_PRIORITY_INVALID();
\r
957 /* Similar to xQueueGenericSend, except we don't block if there is no room
\r
958 in the queue. Also we don't directly wake a task that was blocked on a
\r
959 queue read, instead we return a flag to say whether a context switch is
\r
960 required or not (i.e. has a task with a higher priority than us been woken
\r
962 uxSavedInterruptStatus = portSET_INTERRUPT_MASK_FROM_ISR();
\r
964 if( ( pxQueue->uxMessagesWaiting < pxQueue->uxLength ) || ( xCopyPosition == queueOVERWRITE ) )
\r
966 traceQUEUE_SEND_FROM_ISR( pxQueue );
\r
968 prvCopyDataToQueue( pxQueue, pvItemToQueue, xCopyPosition );
\r
970 /* If the queue is locked we do not alter the event list. This will
\r
971 be done when the queue is unlocked later. */
\r
972 if( pxQueue->xTxLock == queueUNLOCKED )
\r
974 #if ( configUSE_QUEUE_SETS == 1 )
\r
976 if( pxQueue->pxQueueSetContainer != NULL )
\r
978 if( prvNotifyQueueSetContainer( pxQueue, xCopyPosition ) == pdTRUE )
\r
980 /* The queue is a member of a queue set, and posting
\r
981 to the queue set caused a higher priority task to
\r
982 unblock. A context switch is required. */
\r
983 if( pxHigherPriorityTaskWoken != NULL )
\r
985 *pxHigherPriorityTaskWoken = pdTRUE;
\r
991 if( listLIST_IS_EMPTY( &( pxQueue->xTasksWaitingToReceive ) ) == pdFALSE )
\r
993 if( xTaskRemoveFromEventList( &( pxQueue->xTasksWaitingToReceive ) ) != pdFALSE )
\r
995 /* The task waiting has a higher priority so record that a
\r
996 context switch is required. */
\r
997 if( pxHigherPriorityTaskWoken != NULL )
\r
999 *pxHigherPriorityTaskWoken = pdTRUE;
\r
1005 #else /* configUSE_QUEUE_SETS */
\r
1007 if( listLIST_IS_EMPTY( &( pxQueue->xTasksWaitingToReceive ) ) == pdFALSE )
\r
1009 if( xTaskRemoveFromEventList( &( pxQueue->xTasksWaitingToReceive ) ) != pdFALSE )
\r
1011 /* The task waiting has a higher priority so record that a
\r
1012 context switch is required. */
\r
1013 if( pxHigherPriorityTaskWoken != NULL )
\r
1015 *pxHigherPriorityTaskWoken = pdTRUE;
\r
1020 #endif /* configUSE_QUEUE_SETS */
\r
1024 /* Increment the lock count so the task that unlocks the queue
\r
1025 knows that data was posted while it was locked. */
\r
1026 ++( pxQueue->xTxLock );
\r
1033 traceQUEUE_SEND_FROM_ISR_FAILED( pxQueue );
\r
1034 xReturn = errQUEUE_FULL;
\r
1037 portCLEAR_INTERRUPT_MASK_FROM_ISR( uxSavedInterruptStatus );
\r
1041 /*-----------------------------------------------------------*/
\r
1043 signed portBASE_TYPE xQueueGenericReceive( xQueueHandle xQueue, void * const pvBuffer, portTickType xTicksToWait, portBASE_TYPE xJustPeeking )
\r
1045 signed portBASE_TYPE xEntryTimeSet = pdFALSE;
\r
1046 xTimeOutType xTimeOut;
\r
1047 signed char *pcOriginalReadPosition;
\r
1048 xQUEUE * const pxQueue = ( xQUEUE * ) xQueue;
\r
1050 configASSERT( pxQueue );
\r
1051 configASSERT( !( ( pvBuffer == NULL ) && ( pxQueue->uxItemSize != ( unsigned portBASE_TYPE ) 0U ) ) );
\r
1053 /* This function relaxes the coding standard somewhat to allow return
\r
1054 statements within the function itself. This is done in the interest
\r
1055 of execution time efficiency. */
\r
1059 taskENTER_CRITICAL();
\r
1061 /* Is there data in the queue now? To be running we must be
\r
1062 the highest priority task wanting to access the queue. */
\r
1063 if( pxQueue->uxMessagesWaiting > ( unsigned portBASE_TYPE ) 0 )
\r
1065 /* Remember the read position in case the queue is only being
\r
1067 pcOriginalReadPosition = pxQueue->u.pcReadFrom;
\r
1069 prvCopyDataFromQueue( pxQueue, pvBuffer );
\r
1071 if( xJustPeeking == pdFALSE )
\r
1073 traceQUEUE_RECEIVE( pxQueue );
\r
1075 /* Actually removing data, not just peeking. */
\r
1076 --( pxQueue->uxMessagesWaiting );
\r
1078 #if ( configUSE_MUTEXES == 1 )
\r
1080 if( pxQueue->uxQueueType == queueQUEUE_IS_MUTEX )
\r
1082 /* Record the information required to implement
\r
1083 priority inheritance should it become necessary. */
\r
1084 pxQueue->pxMutexHolder = ( signed char * ) xTaskGetCurrentTaskHandle(); /*lint !e961 Cast is not redundant as xTaskHandle is a typedef. */
\r
1089 if( listLIST_IS_EMPTY( &( pxQueue->xTasksWaitingToSend ) ) == pdFALSE )
\r
1091 if( xTaskRemoveFromEventList( &( pxQueue->xTasksWaitingToSend ) ) == pdTRUE )
\r
1093 queueYIELD_IF_USING_PREEMPTION();
\r
1099 traceQUEUE_PEEK( pxQueue );
\r
1101 /* The data is not being removed, so reset the read
\r
1103 pxQueue->u.pcReadFrom = pcOriginalReadPosition;
\r
1105 /* The data is being left in the queue, so see if there are
\r
1106 any other tasks waiting for the data. */
\r
1107 if( listLIST_IS_EMPTY( &( pxQueue->xTasksWaitingToReceive ) ) == pdFALSE )
\r
1109 /* Tasks that are removed from the event list will get added to
\r
1110 the pending ready list as the scheduler is still suspended. */
\r
1111 if( xTaskRemoveFromEventList( &( pxQueue->xTasksWaitingToReceive ) ) != pdFALSE )
\r
1113 /* The task waiting has a higher priority than this task. */
\r
1114 queueYIELD_IF_USING_PREEMPTION();
\r
1119 taskEXIT_CRITICAL();
\r
1124 if( xTicksToWait == ( portTickType ) 0 )
\r
1126 /* The queue was empty and no block time is specified (or
\r
1127 the block time has expired) so leave now. */
\r
1128 taskEXIT_CRITICAL();
\r
1129 traceQUEUE_RECEIVE_FAILED( pxQueue );
\r
1130 return errQUEUE_EMPTY;
\r
1132 else if( xEntryTimeSet == pdFALSE )
\r
1134 /* The queue was empty and a block time was specified so
\r
1135 configure the timeout structure. */
\r
1136 vTaskSetTimeOutState( &xTimeOut );
\r
1137 xEntryTimeSet = pdTRUE;
\r
1141 /* Entry time was already set. */
\r
1145 taskEXIT_CRITICAL();
\r
1147 /* Interrupts and other tasks can send to and receive from the queue
\r
1148 now the critical section has been exited. */
\r
1150 vTaskSuspendAll();
\r
1151 prvLockQueue( pxQueue );
\r
1153 /* Update the timeout state to see if it has expired yet. */
\r
1154 if( xTaskCheckForTimeOut( &xTimeOut, &xTicksToWait ) == pdFALSE )
\r
1156 if( prvIsQueueEmpty( pxQueue ) != pdFALSE )
\r
1158 traceBLOCKING_ON_QUEUE_RECEIVE( pxQueue );
\r
1160 #if ( configUSE_MUTEXES == 1 )
\r
1162 if( pxQueue->uxQueueType == queueQUEUE_IS_MUTEX )
\r
1164 portENTER_CRITICAL();
\r
1166 vTaskPriorityInherit( ( void * ) pxQueue->pxMutexHolder );
\r
1168 portEXIT_CRITICAL();
\r
1173 vTaskPlaceOnEventList( &( pxQueue->xTasksWaitingToReceive ), xTicksToWait );
\r
1174 prvUnlockQueue( pxQueue );
\r
1175 if( xTaskResumeAll() == pdFALSE )
\r
1177 portYIELD_WITHIN_API();
\r
1183 prvUnlockQueue( pxQueue );
\r
1184 ( void ) xTaskResumeAll();
\r
1189 prvUnlockQueue( pxQueue );
\r
1190 ( void ) xTaskResumeAll();
\r
1191 traceQUEUE_RECEIVE_FAILED( pxQueue );
\r
1192 return errQUEUE_EMPTY;
\r
1196 /*-----------------------------------------------------------*/
\r
1198 signed portBASE_TYPE xQueueReceiveFromISR( xQueueHandle xQueue, void * const pvBuffer, signed portBASE_TYPE *pxHigherPriorityTaskWoken )
\r
1200 signed portBASE_TYPE xReturn;
\r
1201 unsigned portBASE_TYPE uxSavedInterruptStatus;
\r
1202 xQUEUE * const pxQueue = ( xQUEUE * ) xQueue;
\r
1204 configASSERT( pxQueue );
\r
1205 configASSERT( !( ( pvBuffer == NULL ) && ( pxQueue->uxItemSize != ( unsigned portBASE_TYPE ) 0U ) ) );
\r
1207 /* RTOS ports that support interrupt nesting have the concept of a maximum
\r
1208 system call (or maximum API call) interrupt priority. Interrupts that are
\r
1209 above the maximum system call priority are keep permanently enabled, even
\r
1210 when the RTOS kernel is in a critical section, but cannot make any calls to
\r
1211 FreeRTOS API functions. If configASSERT() is defined in FreeRTOSConfig.h
\r
1212 then portASSERT_IF_INTERRUPT_PRIORITY_INVALID() will result in an assertion
\r
1213 failure if a FreeRTOS API function is called from an interrupt that has been
\r
1214 assigned a priority above the configured maximum system call priority.
\r
1215 Only FreeRTOS functions that end in FromISR can be called from interrupts
\r
1216 that have been assigned a priority at or (logically) below the maximum
\r
1217 system call interrupt priority. FreeRTOS maintains a separate interrupt
\r
1218 safe API to ensure interrupt entry is as fast and as simple as possible.
\r
1219 More information (albeit Cortex-M specific) is provided on the following
\r
1220 link: http://www.freertos.org/RTOS-Cortex-M3-M4.html */
\r
1221 portASSERT_IF_INTERRUPT_PRIORITY_INVALID();
\r
1223 uxSavedInterruptStatus = portSET_INTERRUPT_MASK_FROM_ISR();
\r
1225 /* Cannot block in an ISR, so check there is data available. */
\r
1226 if( pxQueue->uxMessagesWaiting > ( unsigned portBASE_TYPE ) 0 )
\r
1228 traceQUEUE_RECEIVE_FROM_ISR( pxQueue );
\r
1230 prvCopyDataFromQueue( pxQueue, pvBuffer );
\r
1231 --( pxQueue->uxMessagesWaiting );
\r
1233 /* If the queue is locked the event list will not be modified.
\r
1234 Instead update the lock count so the task that unlocks the queue
\r
1235 will know that an ISR has removed data while the queue was
\r
1237 if( pxQueue->xRxLock == queueUNLOCKED )
\r
1239 if( listLIST_IS_EMPTY( &( pxQueue->xTasksWaitingToSend ) ) == pdFALSE )
\r
1241 if( xTaskRemoveFromEventList( &( pxQueue->xTasksWaitingToSend ) ) != pdFALSE )
\r
1243 /* The task waiting has a higher priority than us so
\r
1244 force a context switch. */
\r
1245 if( pxHigherPriorityTaskWoken != NULL )
\r
1247 *pxHigherPriorityTaskWoken = pdTRUE;
\r
1254 /* Increment the lock count so the task that unlocks the queue
\r
1255 knows that data was removed while it was locked. */
\r
1256 ++( pxQueue->xRxLock );
\r
1264 traceQUEUE_RECEIVE_FROM_ISR_FAILED( pxQueue );
\r
1267 portCLEAR_INTERRUPT_MASK_FROM_ISR( uxSavedInterruptStatus );
\r
1271 /*-----------------------------------------------------------*/
\r
1273 signed portBASE_TYPE xQueuePeekFromISR( xQueueHandle xQueue, void * const pvBuffer )
\r
1275 signed portBASE_TYPE xReturn;
\r
1276 unsigned portBASE_TYPE uxSavedInterruptStatus;
\r
1277 signed char *pcOriginalReadPosition;
\r
1278 xQUEUE * const pxQueue = ( xQUEUE * ) xQueue;
\r
1280 configASSERT( pxQueue );
\r
1281 configASSERT( !( ( pvBuffer == NULL ) && ( pxQueue->uxItemSize != ( unsigned portBASE_TYPE ) 0U ) ) );
\r
1283 /* RTOS ports that support interrupt nesting have the concept of a maximum
\r
1284 system call (or maximum API call) interrupt priority. Interrupts that are
\r
1285 above the maximum system call priority are keep permanently enabled, even
\r
1286 when the RTOS kernel is in a critical section, but cannot make any calls to
\r
1287 FreeRTOS API functions. If configASSERT() is defined in FreeRTOSConfig.h
\r
1288 then portASSERT_IF_INTERRUPT_PRIORITY_INVALID() will result in an assertion
\r
1289 failure if a FreeRTOS API function is called from an interrupt that has been
\r
1290 assigned a priority above the configured maximum system call priority.
\r
1291 Only FreeRTOS functions that end in FromISR can be called from interrupts
\r
1292 that have been assigned a priority at or (logically) below the maximum
\r
1293 system call interrupt priority. FreeRTOS maintains a separate interrupt
\r
1294 safe API to ensure interrupt entry is as fast and as simple as possible.
\r
1295 More information (albeit Cortex-M specific) is provided on the following
\r
1296 link: http://www.freertos.org/RTOS-Cortex-M3-M4.html */
\r
1297 portASSERT_IF_INTERRUPT_PRIORITY_INVALID();
\r
1299 uxSavedInterruptStatus = portSET_INTERRUPT_MASK_FROM_ISR();
\r
1301 /* Cannot block in an ISR, so check there is data available. */
\r
1302 if( pxQueue->uxMessagesWaiting > ( unsigned portBASE_TYPE ) 0 )
\r
1304 traceQUEUE_PEEK_FROM_ISR( pxQueue );
\r
1306 /* Remember the read position so it can be reset as nothing is
\r
1307 actually being removed from the queue. */
\r
1308 pcOriginalReadPosition = pxQueue->u.pcReadFrom;
\r
1309 prvCopyDataFromQueue( pxQueue, pvBuffer );
\r
1310 pxQueue->u.pcReadFrom = pcOriginalReadPosition;
\r
1317 traceQUEUE_PEEK_FROM_ISR_FAILED( pxQueue );
\r
1320 portCLEAR_INTERRUPT_MASK_FROM_ISR( uxSavedInterruptStatus );
\r
1324 /*-----------------------------------------------------------*/
\r
1326 unsigned portBASE_TYPE uxQueueMessagesWaiting( const xQueueHandle xQueue )
\r
1328 unsigned portBASE_TYPE uxReturn;
\r
1330 configASSERT( xQueue );
\r
1332 taskENTER_CRITICAL();
\r
1333 uxReturn = ( ( xQUEUE * ) xQueue )->uxMessagesWaiting;
\r
1334 taskEXIT_CRITICAL();
\r
1337 } /*lint !e818 Pointer cannot be declared const as xQueue is a typedef not pointer. */
\r
1338 /*-----------------------------------------------------------*/
\r
1340 unsigned portBASE_TYPE uxQueueSpacesAvailable( const xQueueHandle xQueue )
\r
1342 unsigned portBASE_TYPE uxReturn;
\r
1345 pxQueue = ( xQUEUE * ) xQueue;
\r
1346 configASSERT( pxQueue );
\r
1348 taskENTER_CRITICAL();
\r
1349 uxReturn = pxQueue->uxLength - pxQueue->uxMessagesWaiting;
\r
1350 taskEXIT_CRITICAL();
\r
1353 } /*lint !e818 Pointer cannot be declared const as xQueue is a typedef not pointer. */
\r
1354 /*-----------------------------------------------------------*/
\r
1356 unsigned portBASE_TYPE uxQueueMessagesWaitingFromISR( const xQueueHandle xQueue )
\r
1358 unsigned portBASE_TYPE uxReturn;
\r
1360 configASSERT( xQueue );
\r
1362 uxReturn = ( ( xQUEUE * ) xQueue )->uxMessagesWaiting;
\r
1365 } /*lint !e818 Pointer cannot be declared const as xQueue is a typedef not pointer. */
\r
1366 /*-----------------------------------------------------------*/
\r
1368 void vQueueDelete( xQueueHandle xQueue )
\r
1370 xQUEUE * const pxQueue = ( xQUEUE * ) xQueue;
\r
1372 configASSERT( pxQueue );
\r
1374 traceQUEUE_DELETE( pxQueue );
\r
1375 #if ( configQUEUE_REGISTRY_SIZE > 0 )
\r
1377 vQueueUnregisterQueue( pxQueue );
\r
1380 vPortFree( pxQueue->pcHead );
\r
1381 vPortFree( pxQueue );
\r
1383 /*-----------------------------------------------------------*/
\r
1385 #if ( configUSE_TRACE_FACILITY == 1 )
\r
1387 unsigned char ucQueueGetQueueNumber( xQueueHandle xQueue )
\r
1389 return ( ( xQUEUE * ) xQueue )->ucQueueNumber;
\r
1392 #endif /* configUSE_TRACE_FACILITY */
\r
1393 /*-----------------------------------------------------------*/
\r
1395 #if ( configUSE_TRACE_FACILITY == 1 )
\r
1397 void vQueueSetQueueNumber( xQueueHandle xQueue, unsigned char ucQueueNumber )
\r
1399 ( ( xQUEUE * ) xQueue )->ucQueueNumber = ucQueueNumber;
\r
1402 #endif /* configUSE_TRACE_FACILITY */
\r
1403 /*-----------------------------------------------------------*/
\r
1405 #if ( configUSE_TRACE_FACILITY == 1 )
\r
1407 unsigned char ucQueueGetQueueType( xQueueHandle xQueue )
\r
1409 return ( ( xQUEUE * ) xQueue )->ucQueueType;
\r
1412 #endif /* configUSE_TRACE_FACILITY */
\r
1413 /*-----------------------------------------------------------*/
\r
1415 static void prvCopyDataToQueue( xQUEUE *pxQueue, const void *pvItemToQueue, portBASE_TYPE xPosition )
\r
1417 if( pxQueue->uxItemSize == ( unsigned portBASE_TYPE ) 0 )
\r
1419 #if ( configUSE_MUTEXES == 1 )
\r
1421 if( pxQueue->uxQueueType == queueQUEUE_IS_MUTEX )
\r
1423 /* The mutex is no longer being held. */
\r
1424 vTaskPriorityDisinherit( ( void * ) pxQueue->pxMutexHolder );
\r
1425 pxQueue->pxMutexHolder = NULL;
\r
1428 #endif /* configUSE_MUTEXES */
\r
1430 else if( xPosition == queueSEND_TO_BACK )
\r
1432 ( void ) memcpy( ( void * ) pxQueue->pcWriteTo, pvItemToQueue, ( size_t ) pxQueue->uxItemSize ); /*lint !e961 !e418 MISRA exception as the casts are only redundant for some ports, plus previous logic ensures a null pointer can only be passed to memcpy() if the copy size is 0. */
\r
1433 pxQueue->pcWriteTo += pxQueue->uxItemSize;
\r
1434 if( pxQueue->pcWriteTo >= pxQueue->pcTail ) /*lint !e946 MISRA exception justified as comparison of pointers is the cleanest solution. */
\r
1436 pxQueue->pcWriteTo = pxQueue->pcHead;
\r
1441 ( void ) memcpy( ( void * ) pxQueue->u.pcReadFrom, pvItemToQueue, ( size_t ) pxQueue->uxItemSize ); /*lint !e961 MISRA exception as the casts are only redundant for some ports. */
\r
1442 pxQueue->u.pcReadFrom -= pxQueue->uxItemSize;
\r
1443 if( pxQueue->u.pcReadFrom < pxQueue->pcHead ) /*lint !e946 MISRA exception justified as comparison of pointers is the cleanest solution. */
\r
1445 pxQueue->u.pcReadFrom = ( pxQueue->pcTail - pxQueue->uxItemSize );
\r
1448 if( xPosition == queueOVERWRITE )
\r
1450 if( pxQueue->uxMessagesWaiting > ( unsigned portBASE_TYPE ) 0 )
\r
1452 /* An item is not being added but overwritten, so subtract
\r
1453 one from the recorded number of items in the queue so when
\r
1454 one is added again below the number of recorded items remains
\r
1456 --( pxQueue->uxMessagesWaiting );
\r
1461 ++( pxQueue->uxMessagesWaiting );
\r
1463 /*-----------------------------------------------------------*/
\r
1465 static void prvCopyDataFromQueue( xQUEUE * const pxQueue, void * const pvBuffer )
\r
1467 if( pxQueue->uxQueueType != queueQUEUE_IS_MUTEX )
\r
1469 pxQueue->u.pcReadFrom += pxQueue->uxItemSize;
\r
1470 if( pxQueue->u.pcReadFrom >= pxQueue->pcTail ) /*lint !e946 MISRA exception justified as use of the relational operator is the cleanest solutions. */
\r
1472 pxQueue->u.pcReadFrom = pxQueue->pcHead;
\r
1474 ( void ) memcpy( ( void * ) pvBuffer, ( void * ) pxQueue->u.pcReadFrom, ( size_t ) pxQueue->uxItemSize ); /*lint !e961 !e418 MISRA exception as the casts are only redundant for some ports. Also previous logic ensures a null pointer can only be passed to memcpy() when the count is 0. */
\r
1477 /*-----------------------------------------------------------*/
\r
1479 static void prvUnlockQueue( xQUEUE *pxQueue )
\r
1481 /* THIS FUNCTION MUST BE CALLED WITH THE SCHEDULER SUSPENDED. */
\r
1483 /* The lock counts contains the number of extra data items placed or
\r
1484 removed from the queue while the queue was locked. When a queue is
\r
1485 locked items can be added or removed, but the event lists cannot be
\r
1487 taskENTER_CRITICAL();
\r
1489 /* See if data was added to the queue while it was locked. */
\r
1490 while( pxQueue->xTxLock > queueLOCKED_UNMODIFIED )
\r
1492 /* Data was posted while the queue was locked. Are any tasks
\r
1493 blocked waiting for data to become available? */
\r
1494 #if ( configUSE_QUEUE_SETS == 1 )
\r
1496 if( pxQueue->pxQueueSetContainer != NULL )
\r
1498 if( prvNotifyQueueSetContainer( pxQueue, queueSEND_TO_BACK ) == pdTRUE )
\r
1500 /* The queue is a member of a queue set, and posting to
\r
1501 the queue set caused a higher priority task to unblock.
\r
1502 A context switch is required. */
\r
1503 vTaskMissedYield();
\r
1508 /* Tasks that are removed from the event list will get added to
\r
1509 the pending ready list as the scheduler is still suspended. */
\r
1510 if( listLIST_IS_EMPTY( &( pxQueue->xTasksWaitingToReceive ) ) == pdFALSE )
\r
1512 if( xTaskRemoveFromEventList( &( pxQueue->xTasksWaitingToReceive ) ) != pdFALSE )
\r
1514 /* The task waiting has a higher priority so record that a
\r
1515 context switch is required. */
\r
1516 vTaskMissedYield();
\r
1525 #else /* configUSE_QUEUE_SETS */
\r
1527 /* Tasks that are removed from the event list will get added to
\r
1528 the pending ready list as the scheduler is still suspended. */
\r
1529 if( listLIST_IS_EMPTY( &( pxQueue->xTasksWaitingToReceive ) ) == pdFALSE )
\r
1531 if( xTaskRemoveFromEventList( &( pxQueue->xTasksWaitingToReceive ) ) != pdFALSE )
\r
1533 /* The task waiting has a higher priority so record that a
\r
1534 context switch is required. */
\r
1535 vTaskMissedYield();
\r
1543 #endif /* configUSE_QUEUE_SETS */
\r
1545 --( pxQueue->xTxLock );
\r
1548 pxQueue->xTxLock = queueUNLOCKED;
\r
1550 taskEXIT_CRITICAL();
\r
1552 /* Do the same for the Rx lock. */
\r
1553 taskENTER_CRITICAL();
\r
1555 while( pxQueue->xRxLock > queueLOCKED_UNMODIFIED )
\r
1557 if( listLIST_IS_EMPTY( &( pxQueue->xTasksWaitingToSend ) ) == pdFALSE )
\r
1559 if( xTaskRemoveFromEventList( &( pxQueue->xTasksWaitingToSend ) ) != pdFALSE )
\r
1561 vTaskMissedYield();
\r
1564 --( pxQueue->xRxLock );
\r
1572 pxQueue->xRxLock = queueUNLOCKED;
\r
1574 taskEXIT_CRITICAL();
\r
1576 /*-----------------------------------------------------------*/
\r
1578 static signed portBASE_TYPE prvIsQueueEmpty( const xQUEUE *pxQueue )
\r
1580 signed portBASE_TYPE xReturn;
\r
1582 taskENTER_CRITICAL();
\r
1584 if( pxQueue->uxMessagesWaiting == ( unsigned portBASE_TYPE ) 0 )
\r
1590 xReturn = pdFALSE;
\r
1593 taskEXIT_CRITICAL();
\r
1597 /*-----------------------------------------------------------*/
\r
1599 signed portBASE_TYPE xQueueIsQueueEmptyFromISR( const xQueueHandle xQueue )
\r
1601 signed portBASE_TYPE xReturn;
\r
1603 configASSERT( xQueue );
\r
1604 if( ( ( xQUEUE * ) xQueue )->uxMessagesWaiting == ( unsigned portBASE_TYPE ) 0 )
\r
1610 xReturn = pdFALSE;
\r
1614 } /*lint !e818 xQueue could not be pointer to const because it is a typedef. */
\r
1615 /*-----------------------------------------------------------*/
\r
1617 static signed portBASE_TYPE prvIsQueueFull( const xQUEUE *pxQueue )
\r
1619 signed portBASE_TYPE xReturn;
\r
1621 taskENTER_CRITICAL();
\r
1623 if( pxQueue->uxMessagesWaiting == pxQueue->uxLength )
\r
1629 xReturn = pdFALSE;
\r
1632 taskEXIT_CRITICAL();
\r
1636 /*-----------------------------------------------------------*/
\r
1638 signed portBASE_TYPE xQueueIsQueueFullFromISR( const xQueueHandle xQueue )
\r
1640 signed portBASE_TYPE xReturn;
\r
1642 configASSERT( xQueue );
\r
1643 if( ( ( xQUEUE * ) xQueue )->uxMessagesWaiting == ( ( xQUEUE * ) xQueue )->uxLength )
\r
1649 xReturn = pdFALSE;
\r
1653 } /*lint !e818 xQueue could not be pointer to const because it is a typedef. */
\r
1654 /*-----------------------------------------------------------*/
\r
1656 #if ( configUSE_CO_ROUTINES == 1 )
\r
1658 signed portBASE_TYPE xQueueCRSend( xQueueHandle xQueue, const void *pvItemToQueue, portTickType xTicksToWait )
\r
1660 signed portBASE_TYPE xReturn;
\r
1661 xQUEUE * const pxQueue = ( xQUEUE * ) xQueue;
\r
1663 /* If the queue is already full we may have to block. A critical section
\r
1664 is required to prevent an interrupt removing something from the queue
\r
1665 between the check to see if the queue is full and blocking on the queue. */
\r
1666 portDISABLE_INTERRUPTS();
\r
1668 if( prvIsQueueFull( pxQueue ) != pdFALSE )
\r
1670 /* The queue is full - do we want to block or just leave without
\r
1672 if( xTicksToWait > ( portTickType ) 0 )
\r
1674 /* As this is called from a coroutine we cannot block directly, but
\r
1675 return indicating that we need to block. */
\r
1676 vCoRoutineAddToDelayedList( xTicksToWait, &( pxQueue->xTasksWaitingToSend ) );
\r
1677 portENABLE_INTERRUPTS();
\r
1678 return errQUEUE_BLOCKED;
\r
1682 portENABLE_INTERRUPTS();
\r
1683 return errQUEUE_FULL;
\r
1687 portENABLE_INTERRUPTS();
\r
1689 portDISABLE_INTERRUPTS();
\r
1691 if( pxQueue->uxMessagesWaiting < pxQueue->uxLength )
\r
1693 /* There is room in the queue, copy the data into the queue. */
\r
1694 prvCopyDataToQueue( pxQueue, pvItemToQueue, queueSEND_TO_BACK );
\r
1697 /* Were any co-routines waiting for data to become available? */
\r
1698 if( listLIST_IS_EMPTY( &( pxQueue->xTasksWaitingToReceive ) ) == pdFALSE )
\r
1700 /* In this instance the co-routine could be placed directly
\r
1701 into the ready list as we are within a critical section.
\r
1702 Instead the same pending ready list mechanism is used as if
\r
1703 the event were caused from within an interrupt. */
\r
1704 if( xCoRoutineRemoveFromEventList( &( pxQueue->xTasksWaitingToReceive ) ) != pdFALSE )
\r
1706 /* The co-routine waiting has a higher priority so record
\r
1707 that a yield might be appropriate. */
\r
1708 xReturn = errQUEUE_YIELD;
\r
1714 xReturn = errQUEUE_FULL;
\r
1717 portENABLE_INTERRUPTS();
\r
1722 #endif /* configUSE_CO_ROUTINES */
\r
1723 /*-----------------------------------------------------------*/
\r
1725 #if ( configUSE_CO_ROUTINES == 1 )
\r
1727 signed portBASE_TYPE xQueueCRReceive( xQueueHandle xQueue, void *pvBuffer, portTickType xTicksToWait )
\r
1729 signed portBASE_TYPE xReturn;
\r
1730 xQUEUE * const pxQueue = ( xQUEUE * ) xQueue;
\r
1732 /* If the queue is already empty we may have to block. A critical section
\r
1733 is required to prevent an interrupt adding something to the queue
\r
1734 between the check to see if the queue is empty and blocking on the queue. */
\r
1735 portDISABLE_INTERRUPTS();
\r
1737 if( pxQueue->uxMessagesWaiting == ( unsigned portBASE_TYPE ) 0 )
\r
1739 /* There are no messages in the queue, do we want to block or just
\r
1740 leave with nothing? */
\r
1741 if( xTicksToWait > ( portTickType ) 0 )
\r
1743 /* As this is a co-routine we cannot block directly, but return
\r
1744 indicating that we need to block. */
\r
1745 vCoRoutineAddToDelayedList( xTicksToWait, &( pxQueue->xTasksWaitingToReceive ) );
\r
1746 portENABLE_INTERRUPTS();
\r
1747 return errQUEUE_BLOCKED;
\r
1751 portENABLE_INTERRUPTS();
\r
1752 return errQUEUE_FULL;
\r
1756 portENABLE_INTERRUPTS();
\r
1758 portDISABLE_INTERRUPTS();
\r
1760 if( pxQueue->uxMessagesWaiting > ( unsigned portBASE_TYPE ) 0 )
\r
1762 /* Data is available from the queue. */
\r
1763 pxQueue->u.pcReadFrom += pxQueue->uxItemSize;
\r
1764 if( pxQueue->u.pcReadFrom >= pxQueue->pcTail )
\r
1766 pxQueue->u.pcReadFrom = pxQueue->pcHead;
\r
1768 --( pxQueue->uxMessagesWaiting );
\r
1769 ( void ) memcpy( ( void * ) pvBuffer, ( void * ) pxQueue->u.pcReadFrom, ( unsigned ) pxQueue->uxItemSize );
\r
1773 /* Were any co-routines waiting for space to become available? */
\r
1774 if( listLIST_IS_EMPTY( &( pxQueue->xTasksWaitingToSend ) ) == pdFALSE )
\r
1776 /* In this instance the co-routine could be placed directly
\r
1777 into the ready list as we are within a critical section.
\r
1778 Instead the same pending ready list mechanism is used as if
\r
1779 the event were caused from within an interrupt. */
\r
1780 if( xCoRoutineRemoveFromEventList( &( pxQueue->xTasksWaitingToSend ) ) != pdFALSE )
\r
1782 xReturn = errQUEUE_YIELD;
\r
1791 portENABLE_INTERRUPTS();
\r
1796 #endif /* configUSE_CO_ROUTINES */
\r
1797 /*-----------------------------------------------------------*/
\r
1799 #if ( configUSE_CO_ROUTINES == 1 )
\r
1801 signed portBASE_TYPE xQueueCRSendFromISR( xQueueHandle xQueue, const void *pvItemToQueue, signed portBASE_TYPE xCoRoutinePreviouslyWoken )
\r
1803 xQUEUE * const pxQueue = ( xQUEUE * ) xQueue;
\r
1805 /* Cannot block within an ISR so if there is no space on the queue then
\r
1806 exit without doing anything. */
\r
1807 if( pxQueue->uxMessagesWaiting < pxQueue->uxLength )
\r
1809 prvCopyDataToQueue( pxQueue, pvItemToQueue, queueSEND_TO_BACK );
\r
1811 /* We only want to wake one co-routine per ISR, so check that a
\r
1812 co-routine has not already been woken. */
\r
1813 if( xCoRoutinePreviouslyWoken == pdFALSE )
\r
1815 if( listLIST_IS_EMPTY( &( pxQueue->xTasksWaitingToReceive ) ) == pdFALSE )
\r
1817 if( xCoRoutineRemoveFromEventList( &( pxQueue->xTasksWaitingToReceive ) ) != pdFALSE )
\r
1825 return xCoRoutinePreviouslyWoken;
\r
1828 #endif /* configUSE_CO_ROUTINES */
\r
1829 /*-----------------------------------------------------------*/
\r
1831 #if ( configUSE_CO_ROUTINES == 1 )
\r
1833 signed portBASE_TYPE xQueueCRReceiveFromISR( xQueueHandle xQueue, void *pvBuffer, signed portBASE_TYPE *pxCoRoutineWoken )
\r
1835 signed portBASE_TYPE xReturn;
\r
1836 xQUEUE * const pxQueue = ( xQUEUE * ) xQueue;
\r
1838 /* We cannot block from an ISR, so check there is data available. If
\r
1839 not then just leave without doing anything. */
\r
1840 if( pxQueue->uxMessagesWaiting > ( unsigned portBASE_TYPE ) 0 )
\r
1842 /* Copy the data from the queue. */
\r
1843 pxQueue->u.pcReadFrom += pxQueue->uxItemSize;
\r
1844 if( pxQueue->u.pcReadFrom >= pxQueue->pcTail )
\r
1846 pxQueue->u.pcReadFrom = pxQueue->pcHead;
\r
1848 --( pxQueue->uxMessagesWaiting );
\r
1849 ( void ) memcpy( ( void * ) pvBuffer, ( void * ) pxQueue->u.pcReadFrom, ( unsigned ) pxQueue->uxItemSize );
\r
1851 if( ( *pxCoRoutineWoken ) == pdFALSE )
\r
1853 if( listLIST_IS_EMPTY( &( pxQueue->xTasksWaitingToSend ) ) == pdFALSE )
\r
1855 if( xCoRoutineRemoveFromEventList( &( pxQueue->xTasksWaitingToSend ) ) != pdFALSE )
\r
1857 *pxCoRoutineWoken = pdTRUE;
\r
1872 #endif /* configUSE_CO_ROUTINES */
\r
1873 /*-----------------------------------------------------------*/
\r
1875 #if ( configQUEUE_REGISTRY_SIZE > 0 )
\r
1877 void vQueueAddToRegistry( xQueueHandle xQueue, signed char *pcQueueName )
\r
1879 unsigned portBASE_TYPE ux;
\r
1881 /* See if there is an empty space in the registry. A NULL name denotes
\r
1883 for( ux = ( unsigned portBASE_TYPE ) 0U; ux < ( unsigned portBASE_TYPE ) configQUEUE_REGISTRY_SIZE; ux++ )
\r
1885 if( xQueueRegistry[ ux ].pcQueueName == NULL )
\r
1887 /* Store the information on this queue. */
\r
1888 xQueueRegistry[ ux ].pcQueueName = pcQueueName;
\r
1889 xQueueRegistry[ ux ].xHandle = xQueue;
\r
1895 #endif /* configQUEUE_REGISTRY_SIZE */
\r
1896 /*-----------------------------------------------------------*/
\r
1898 #if ( configQUEUE_REGISTRY_SIZE > 0 )
\r
1900 void vQueueUnregisterQueue( xQueueHandle xQueue )
\r
1902 unsigned portBASE_TYPE ux;
\r
1904 /* See if the handle of the queue being unregistered in actually in the
\r
1906 for( ux = ( unsigned portBASE_TYPE ) 0U; ux < ( unsigned portBASE_TYPE ) configQUEUE_REGISTRY_SIZE; ux++ )
\r
1908 if( xQueueRegistry[ ux ].xHandle == xQueue )
\r
1910 /* Set the name to NULL to show that this slot if free again. */
\r
1911 xQueueRegistry[ ux ].pcQueueName = NULL;
\r
1916 } /*lint !e818 xQueue could not be pointer to const because it is a typedef. */
\r
1918 #endif /* configQUEUE_REGISTRY_SIZE */
\r
1919 /*-----------------------------------------------------------*/
\r
1921 #if ( configUSE_TIMERS == 1 )
\r
1923 void vQueueWaitForMessageRestricted( xQueueHandle xQueue, portTickType xTicksToWait )
\r
1925 xQUEUE * const pxQueue = ( xQUEUE * ) xQueue;
\r
1927 /* This function should not be called by application code hence the
\r
1928 'Restricted' in its name. It is not part of the public API. It is
\r
1929 designed for use by kernel code, and has special calling requirements.
\r
1930 It can result in vListInsert() being called on a list that can only
\r
1931 possibly ever have one item in it, so the list will be fast, but even
\r
1932 so it should be called with the scheduler locked and not from a critical
\r
1935 /* Only do anything if there are no messages in the queue. This function
\r
1936 will not actually cause the task to block, just place it on a blocked
\r
1937 list. It will not block until the scheduler is unlocked - at which
\r
1938 time a yield will be performed. If an item is added to the queue while
\r
1939 the queue is locked, and the calling task blocks on the queue, then the
\r
1940 calling task will be immediately unblocked when the queue is unlocked. */
\r
1941 prvLockQueue( pxQueue );
\r
1942 if( pxQueue->uxMessagesWaiting == ( unsigned portBASE_TYPE ) 0U )
\r
1944 /* There is nothing in the queue, block for the specified period. */
\r
1945 vTaskPlaceOnEventListRestricted( &( pxQueue->xTasksWaitingToReceive ), xTicksToWait );
\r
1947 prvUnlockQueue( pxQueue );
\r
1950 #endif /* configUSE_TIMERS */
\r
1951 /*-----------------------------------------------------------*/
\r
1953 #if ( configUSE_QUEUE_SETS == 1 )
\r
1955 xQueueSetHandle xQueueCreateSet( unsigned portBASE_TYPE uxEventQueueLength )
\r
1957 xQueueSetHandle pxQueue;
\r
1959 pxQueue = xQueueGenericCreate( uxEventQueueLength, sizeof( xQUEUE * ), queueQUEUE_TYPE_SET );
\r
1964 #endif /* configUSE_QUEUE_SETS */
\r
1965 /*-----------------------------------------------------------*/
\r
1967 #if ( configUSE_QUEUE_SETS == 1 )
\r
1969 portBASE_TYPE xQueueAddToSet( xQueueSetMemberHandle xQueueOrSemaphore, xQueueSetHandle xQueueSet )
\r
1971 portBASE_TYPE xReturn;
\r
1973 if( ( ( xQUEUE * ) xQueueOrSemaphore )->pxQueueSetContainer != NULL )
\r
1975 /* Cannot add a queue/semaphore to more than one queue set. */
\r
1978 else if( ( ( xQUEUE * ) xQueueOrSemaphore )->uxMessagesWaiting != ( unsigned portBASE_TYPE ) 0 )
\r
1980 /* Cannot add a queue/semaphore to a queue set if there are already
\r
1981 items in the queue/semaphore. */
\r
1986 taskENTER_CRITICAL();
\r
1988 ( ( xQUEUE * ) xQueueOrSemaphore )->pxQueueSetContainer = xQueueSet;
\r
1990 taskEXIT_CRITICAL();
\r
1997 #endif /* configUSE_QUEUE_SETS */
\r
1998 /*-----------------------------------------------------------*/
\r
2000 #if ( configUSE_QUEUE_SETS == 1 )
\r
2002 portBASE_TYPE xQueueRemoveFromSet( xQueueSetMemberHandle xQueueOrSemaphore, xQueueSetHandle xQueueSet )
\r
2004 portBASE_TYPE xReturn;
\r
2005 xQUEUE * const pxQueueOrSemaphore = ( xQUEUE * ) xQueueOrSemaphore;
\r
2007 if( pxQueueOrSemaphore->pxQueueSetContainer != xQueueSet )
\r
2009 /* The queue was not a member of the set. */
\r
2012 else if( pxQueueOrSemaphore->uxMessagesWaiting != ( unsigned portBASE_TYPE ) 0 )
\r
2014 /* It is dangerous to remove a queue from a set when the queue is
\r
2015 not empty because the queue set will still hold pending events for
\r
2021 taskENTER_CRITICAL();
\r
2023 /* The queue is no longer contained in the set. */
\r
2024 pxQueueOrSemaphore->pxQueueSetContainer = NULL;
\r
2026 taskEXIT_CRITICAL();
\r
2031 } /*lint !e818 xQueueSet could not be declared as pointing to const as it is a typedef. */
\r
2033 #endif /* configUSE_QUEUE_SETS */
\r
2034 /*-----------------------------------------------------------*/
\r
2036 #if ( configUSE_QUEUE_SETS == 1 )
\r
2038 xQueueSetMemberHandle xQueueSelectFromSet( xQueueSetHandle xQueueSet, portTickType xBlockTimeTicks )
\r
2040 xQueueSetMemberHandle xReturn = NULL;
\r
2042 ( void ) xQueueGenericReceive( ( xQueueHandle ) xQueueSet, &xReturn, xBlockTimeTicks, pdFALSE ); /*lint !e961 Casting from one typedef to another is not redundant. */
\r
2046 #endif /* configUSE_QUEUE_SETS */
\r
2047 /*-----------------------------------------------------------*/
\r
2049 #if ( configUSE_QUEUE_SETS == 1 )
\r
2051 xQueueSetMemberHandle xQueueSelectFromSetFromISR( xQueueSetHandle xQueueSet )
\r
2053 xQueueSetMemberHandle xReturn = NULL;
\r
2055 ( void ) xQueueReceiveFromISR( ( xQueueHandle ) xQueueSet, &xReturn, NULL ); /*lint !e961 Casting from one typedef to another is not redundant. */
\r
2059 #endif /* configUSE_QUEUE_SETS */
\r
2060 /*-----------------------------------------------------------*/
\r
2062 #if ( configUSE_QUEUE_SETS == 1 )
\r
2064 static portBASE_TYPE prvNotifyQueueSetContainer( const xQUEUE * const pxQueue, portBASE_TYPE xCopyPosition )
\r
2066 xQUEUE *pxQueueSetContainer = pxQueue->pxQueueSetContainer;
\r
2067 portBASE_TYPE xReturn = pdFALSE;
\r
2069 configASSERT( pxQueueSetContainer );
\r
2070 configASSERT( pxQueueSetContainer->uxMessagesWaiting < pxQueueSetContainer->uxLength );
\r
2072 if( pxQueueSetContainer->uxMessagesWaiting < pxQueueSetContainer->uxLength )
\r
2074 traceQUEUE_SEND( pxQueueSetContainer );
\r
2075 /* The data copies is the handle of the queue that contains data. */
\r
2076 prvCopyDataToQueue( pxQueueSetContainer, &pxQueue, xCopyPosition );
\r
2077 if( listLIST_IS_EMPTY( &( pxQueueSetContainer->xTasksWaitingToReceive ) ) == pdFALSE )
\r
2079 if( xTaskRemoveFromEventList( &( pxQueueSetContainer->xTasksWaitingToReceive ) ) != pdFALSE )
\r
2081 /* The task waiting has a higher priority */
\r
2090 #endif /* configUSE_QUEUE_SETS */
\r