| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124 |
- /*
- * FreeRTOS Kernel V10.4.6
- * Copyright (C) 2021 Amazon.com, Inc. or its affiliates. All Rights Reserved.
- *
- * SPDX-License-Identifier: MIT
- *
- * Permission is hereby granted, free of charge, to any person obtaining a copy of
- * this software and associated documentation files (the "Software"), to deal in
- * the Software without restriction, including without limitation the rights to
- * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
- * the Software, and to permit persons to whom the Software is furnished to do so,
- * subject to the following conditions:
- *
- * The above copyright notice and this permission notice shall be included in all
- * copies or substantial portions of the Software.
- *
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
- * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
- * FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
- * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
- * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
- * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
- *
- * https://www.FreeRTOS.org
- * https://github.com/FreeRTOS
- *
- */
- #ifndef QUEUE_H
- #define QUEUE_H
- /* *INDENT-OFF* */
- #ifdef __cplusplus
- extern "C" {
- #endif
- /* *INDENT-ON* */
- /**
- * Type by which queues are referenced. For example, a call to xQueueCreate()
- * returns an QueueHandle_t variable that can then be used as a parameter to
- * xQueueSend(), xQueueReceive(), etc.
- */
- struct QueueDefinition; /* Using old naming convention so as not to break kernel aware debuggers. */
- typedef struct QueueDefinition * QueueHandle_t;
- /* For internal use only. */
- #define queueSEND_TO_BACK ( ( BaseType_t ) 0 )
- #define queueSEND_TO_FRONT ( ( BaseType_t ) 1 )
- #define queueOVERWRITE ( ( BaseType_t ) 2 )
- /* For internal use only. These definitions *must* match those in queue.c. */
- #define queueQUEUE_TYPE_BASE ( ( uint8_t ) 0U )
- #define queueQUEUE_TYPE_SET ( ( uint8_t ) 0U )
- #define queueQUEUE_TYPE_MUTEX ( ( uint8_t ) 1U )
- #define queueQUEUE_TYPE_COUNTING_SEMAPHORE ( ( uint8_t ) 2U )
- #define queueQUEUE_TYPE_BINARY_SEMAPHORE ( ( uint8_t ) 3U )
- #define queueQUEUE_TYPE_RECURSIVE_MUTEX ( ( uint8_t ) 4U )
- /**
- * queue. h
- * @code{c}
- * QueueHandle_t xQueueCreate(
- * UBaseType_t uxQueueLength,
- * UBaseType_t uxItemSize
- * );
- * @endcode
- *
- * Creates a new queue instance, and returns a handle by which the new queue
- * can be referenced.
- *
- * Internally, within the FreeRTOS implementation, queues use two blocks of
- * memory. The first block is used to hold the queue's data structures. The
- * second block is used to hold items placed into the queue. If a queue is
- * created using xQueueCreate() then both blocks of memory are automatically
- * dynamically allocated inside the xQueueCreate() function. (see
- * https://www.FreeRTOS.org/a00111.html). If a queue is created using
- * xQueueCreateStatic() then the application writer must provide the memory that
- * will get used by the queue. xQueueCreateStatic() therefore allows a queue to
- * be created without using any dynamic memory allocation.
- *
- * https://www.FreeRTOS.org/Embedded-RTOS-Queues.html
- *
- * @param uxQueueLength The maximum number of items that the queue can contain.
- *
- * @param uxItemSize The number of bytes each item in the queue will require.
- * Items are queued by copy, not by reference, so this is the number of bytes
- * that will be copied for each posted item. Each item on the queue must be
- * the same size.
- *
- * @return If the queue is successfully create then a handle to the newly
- * created queue is returned. If the queue cannot be created then 0 is
- * returned.
- *
- * Example usage:
- * @code{c}
- * struct AMessage
- * {
- * char ucMessageID;
- * char ucData[ 20 ];
- * };
- *
- * void vATask( void *pvParameters )
- * {
- * QueueHandle_t xQueue1, xQueue2;
- *
- * // Create a queue capable of containing 10 uint32_t values.
- * xQueue1 = xQueueCreate( 10, sizeof( uint32_t ) );
- * if( xQueue1 == 0 )
- * {
- * // Queue was not created and must not be used.
- * }
- *
- * // Create a queue capable of containing 10 pointers to AMessage structures.
- * // These should be passed by pointer as they contain a lot of data.
- * xQueue2 = xQueueCreate( 10, sizeof( struct AMessage * ) );
- * if( xQueue2 == 0 )
- * {
- * // Queue was not created and must not be used.
- * }
- *
- * // ... Rest of task code.
- * }
- * @endcode
- * \defgroup xQueueCreate xQueueCreate
- * \ingroup QueueManagement
- */
- #if ( configSUPPORT_DYNAMIC_ALLOCATION == 1 )
- #define xQueueCreate( uxQueueLength, uxItemSize ) xQueueGenericCreate( ( uxQueueLength ), ( uxItemSize ), ( queueQUEUE_TYPE_BASE ) )
- #endif
- /**
- * queue. h
- * @code{c}
- * QueueHandle_t xQueueCreateStatic(
- * UBaseType_t uxQueueLength,
- * UBaseType_t uxItemSize,
- * uint8_t *pucQueueStorage,
- * StaticQueue_t *pxQueueBuffer
- * );
- * @endcode
- *
- * Creates a new queue instance, and returns a handle by which the new queue
- * can be referenced.
- *
- * Internally, within the FreeRTOS implementation, queues use two blocks of
- * memory. The first block is used to hold the queue's data structures. The
- * second block is used to hold items placed into the queue. If a queue is
- * created using xQueueCreate() then both blocks of memory are automatically
- * dynamically allocated inside the xQueueCreate() function. (see
- * https://www.FreeRTOS.org/a00111.html). If a queue is created using
- * xQueueCreateStatic() then the application writer must provide the memory that
- * will get used by the queue. xQueueCreateStatic() therefore allows a queue to
- * be created without using any dynamic memory allocation.
- *
- * https://www.FreeRTOS.org/Embedded-RTOS-Queues.html
- *
- * @param uxQueueLength The maximum number of items that the queue can contain.
- *
- * @param uxItemSize The number of bytes each item in the queue will require.
- * Items are queued by copy, not by reference, so this is the number of bytes
- * that will be copied for each posted item. Each item on the queue must be
- * the same size.
- *
- * @param pucQueueStorage If uxItemSize is not zero then
- * pucQueueStorage must point to a uint8_t array that is at least large
- * enough to hold the maximum number of items that can be in the queue at any
- * one time - which is ( uxQueueLength * uxItemsSize ) bytes. If uxItemSize is
- * zero then pucQueueStorage can be NULL.
- *
- * @param pxQueueBuffer Must point to a variable of type StaticQueue_t, which
- * will be used to hold the queue's data structure.
- *
- * @return If the queue is created then a handle to the created queue is
- * returned. If pxQueueBuffer is NULL then NULL is returned.
- *
- * Example usage:
- * @code{c}
- * struct AMessage
- * {
- * char ucMessageID;
- * char ucData[ 20 ];
- * };
- *
- #define QUEUE_LENGTH 10
- #define ITEM_SIZE sizeof( uint32_t )
- *
- * // xQueueBuffer will hold the queue structure.
- * StaticQueue_t xQueueBuffer;
- *
- * // ucQueueStorage will hold the items posted to the queue. Must be at least
- * // [(queue length) * ( queue item size)] bytes long.
- * uint8_t ucQueueStorage[ QUEUE_LENGTH * ITEM_SIZE ];
- *
- * void vATask( void *pvParameters )
- * {
- * QueueHandle_t xQueue1;
- *
- * // Create a queue capable of containing 10 uint32_t values.
- * xQueue1 = xQueueCreate( QUEUE_LENGTH, // The number of items the queue can hold.
- * ITEM_SIZE // The size of each item in the queue
- * &( ucQueueStorage[ 0 ] ), // The buffer that will hold the items in the queue.
- * &xQueueBuffer ); // The buffer that will hold the queue structure.
- *
- * // The queue is guaranteed to be created successfully as no dynamic memory
- * // allocation is used. Therefore xQueue1 is now a handle to a valid queue.
- *
- * // ... Rest of task code.
- * }
- * @endcode
- * \defgroup xQueueCreateStatic xQueueCreateStatic
- * \ingroup QueueManagement
- */
- #if ( configSUPPORT_STATIC_ALLOCATION == 1 )
- #define xQueueCreateStatic( uxQueueLength, uxItemSize, pucQueueStorage, pxQueueBuffer ) xQueueGenericCreateStatic( ( uxQueueLength ), ( uxItemSize ), ( pucQueueStorage ), ( pxQueueBuffer ), ( queueQUEUE_TYPE_BASE ) )
- #endif /* configSUPPORT_STATIC_ALLOCATION */
- /**
- * queue. h
- * @code{c}
- * BaseType_t xQueueSendToToFront(
- * QueueHandle_t xQueue,
- * const void *pvItemToQueue,
- * TickType_t xTicksToWait
- * );
- * @endcode
- *
- * Post an item to the front of a queue. The item is queued by copy, not by
- * reference. This function must not be called from an interrupt service
- * routine. See xQueueSendFromISR () for an alternative which may be used
- * in an ISR.
- *
- * @param xQueue The handle to the queue on which the item is to be posted.
- *
- * @param pvItemToQueue A pointer to the item that is to be placed on the
- * queue. The size of the items the queue will hold was defined when the
- * queue was created, so this many bytes will be copied from pvItemToQueue
- * into the queue storage area.
- *
- * @param xTicksToWait The maximum amount of time the task should block
- * waiting for space to become available on the queue, should it already
- * be full. The call will return immediately if this is set to 0 and the
- * queue is full. The time is defined in tick periods so the constant
- * portTICK_PERIOD_MS should be used to convert to real time if this is required.
- *
- * @return pdTRUE if the item was successfully posted, otherwise errQUEUE_FULL.
- *
- * Example usage:
- * @code{c}
- * struct AMessage
- * {
- * char ucMessageID;
- * char ucData[ 20 ];
- * } xMessage;
- *
- * uint32_t ulVar = 10UL;
- *
- * void vATask( void *pvParameters )
- * {
- * QueueHandle_t xQueue1, xQueue2;
- * struct AMessage *pxMessage;
- *
- * // Create a queue capable of containing 10 uint32_t values.
- * xQueue1 = xQueueCreate( 10, sizeof( uint32_t ) );
- *
- * // Create a queue capable of containing 10 pointers to AMessage structures.
- * // These should be passed by pointer as they contain a lot of data.
- * xQueue2 = xQueueCreate( 10, sizeof( struct AMessage * ) );
- *
- * // ...
- *
- * if( xQueue1 != 0 )
- * {
- * // Send an uint32_t. Wait for 10 ticks for space to become
- * // available if necessary.
- * if( xQueueSendToFront( xQueue1, ( void * ) &ulVar, ( TickType_t ) 10 ) != pdPASS )
- * {
- * // Failed to post the message, even after 10 ticks.
- * }
- * }
- *
- * if( xQueue2 != 0 )
- * {
- * // Send a pointer to a struct AMessage object. Don't block if the
- * // queue is already full.
- * pxMessage = & xMessage;
- * xQueueSendToFront( xQueue2, ( void * ) &pxMessage, ( TickType_t ) 0 );
- * }
- *
- * // ... Rest of task code.
- * }
- * @endcode
- * \defgroup xQueueSend xQueueSend
- * \ingroup QueueManagement
- */
- #define xQueueSendToFront( xQueue, pvItemToQueue, xTicksToWait ) \
- xQueueGenericSend( ( xQueue ), ( pvItemToQueue ), ( xTicksToWait ), queueSEND_TO_FRONT )
- /**
- * queue. h
- * @code{c}
- * BaseType_t xQueueSendToBack(
- * QueueHandle_t xQueue,
- * const void *pvItemToQueue,
- * TickType_t xTicksToWait
- * );
- * @endcode
- *
- * This is a macro that calls xQueueGenericSend().
- *
- * Post an item to the back of a queue. The item is queued by copy, not by
- * reference. This function must not be called from an interrupt service
- * routine. See xQueueSendFromISR () for an alternative which may be used
- * in an ISR.
- *
- * @param xQueue The handle to the queue on which the item is to be posted.
- *
- * @param pvItemToQueue A pointer to the item that is to be placed on the
- * queue. The size of the items the queue will hold was defined when the
- * queue was created, so this many bytes will be copied from pvItemToQueue
- * into the queue storage area.
- *
- * @param xTicksToWait The maximum amount of time the task should block
- * waiting for space to become available on the queue, should it already
- * be full. The call will return immediately if this is set to 0 and the queue
- * is full. The time is defined in tick periods so the constant
- * portTICK_PERIOD_MS should be used to convert to real time if this is required.
- *
- * @return pdTRUE if the item was successfully posted, otherwise errQUEUE_FULL.
- *
- * Example usage:
- * @code{c}
- * struct AMessage
- * {
- * char ucMessageID;
- * char ucData[ 20 ];
- * } xMessage;
- *
- * uint32_t ulVar = 10UL;
- *
- * void vATask( void *pvParameters )
- * {
- * QueueHandle_t xQueue1, xQueue2;
- * struct AMessage *pxMessage;
- *
- * // Create a queue capable of containing 10 uint32_t values.
- * xQueue1 = xQueueCreate( 10, sizeof( uint32_t ) );
- *
- * // Create a queue capable of containing 10 pointers to AMessage structures.
- * // These should be passed by pointer as they contain a lot of data.
- * xQueue2 = xQueueCreate( 10, sizeof( struct AMessage * ) );
- *
- * // ...
- *
- * if( xQueue1 != 0 )
- * {
- * // Send an uint32_t. Wait for 10 ticks for space to become
- * // available if necessary.
- * if( xQueueSendToBack( xQueue1, ( void * ) &ulVar, ( TickType_t ) 10 ) != pdPASS )
- * {
- * // Failed to post the message, even after 10 ticks.
- * }
- * }
- *
- * if( xQueue2 != 0 )
- * {
- * // Send a pointer to a struct AMessage object. Don't block if the
- * // queue is already full.
- * pxMessage = & xMessage;
- * xQueueSendToBack( xQueue2, ( void * ) &pxMessage, ( TickType_t ) 0 );
- * }
- *
- * // ... Rest of task code.
- * }
- * @endcode
- * \defgroup xQueueSend xQueueSend
- * \ingroup QueueManagement
- */
- #define xQueueSendToBack( xQueue, pvItemToQueue, xTicksToWait ) \
- xQueueGenericSend( ( xQueue ), ( pvItemToQueue ), ( xTicksToWait ), queueSEND_TO_BACK )
- /**
- * queue. h
- * @code{c}
- * BaseType_t xQueueSend(
- * QueueHandle_t xQueue,
- * const void * pvItemToQueue,
- * TickType_t xTicksToWait
- * );
- * @endcode
- *
- * This is a macro that calls xQueueGenericSend(). It is included for
- * backward compatibility with versions of FreeRTOS.org that did not
- * include the xQueueSendToFront() and xQueueSendToBack() macros. It is
- * equivalent to xQueueSendToBack().
- *
- * Post an item on a queue. The item is queued by copy, not by reference.
- * This function must not be called from an interrupt service routine.
- * See xQueueSendFromISR () for an alternative which may be used in an ISR.
- *
- * @param xQueue The handle to the queue on which the item is to be posted.
- *
- * @param pvItemToQueue A pointer to the item that is to be placed on the
- * queue. The size of the items the queue will hold was defined when the
- * queue was created, so this many bytes will be copied from pvItemToQueue
- * into the queue storage area.
- *
- * @param xTicksToWait The maximum amount of time the task should block
- * waiting for space to become available on the queue, should it already
- * be full. The call will return immediately if this is set to 0 and the
- * queue is full. The time is defined in tick periods so the constant
- * portTICK_PERIOD_MS should be used to convert to real time if this is required.
- *
- * @return pdTRUE if the item was successfully posted, otherwise errQUEUE_FULL.
- *
- * Example usage:
- * @code{c}
- * struct AMessage
- * {
- * char ucMessageID;
- * char ucData[ 20 ];
- * } xMessage;
- *
- * uint32_t ulVar = 10UL;
- *
- * void vATask( void *pvParameters )
- * {
- * QueueHandle_t xQueue1, xQueue2;
- * struct AMessage *pxMessage;
- *
- * // Create a queue capable of containing 10 uint32_t values.
- * xQueue1 = xQueueCreate( 10, sizeof( uint32_t ) );
- *
- * // Create a queue capable of containing 10 pointers to AMessage structures.
- * // These should be passed by pointer as they contain a lot of data.
- * xQueue2 = xQueueCreate( 10, sizeof( struct AMessage * ) );
- *
- * // ...
- *
- * if( xQueue1 != 0 )
- * {
- * // Send an uint32_t. Wait for 10 ticks for space to become
- * // available if necessary.
- * if( xQueueSend( xQueue1, ( void * ) &ulVar, ( TickType_t ) 10 ) != pdPASS )
- * {
- * // Failed to post the message, even after 10 ticks.
- * }
- * }
- *
- * if( xQueue2 != 0 )
- * {
- * // Send a pointer to a struct AMessage object. Don't block if the
- * // queue is already full.
- * pxMessage = & xMessage;
- * xQueueSend( xQueue2, ( void * ) &pxMessage, ( TickType_t ) 0 );
- * }
- *
- * // ... Rest of task code.
- * }
- * @endcode
- * \defgroup xQueueSend xQueueSend
- * \ingroup QueueManagement
- */
- #define xQueueSend( xQueue, pvItemToQueue, xTicksToWait ) \
- xQueueGenericSend( ( xQueue ), ( pvItemToQueue ), ( xTicksToWait ), queueSEND_TO_BACK )
- /**
- * queue. h
- * @code{c}
- * BaseType_t xQueueGenericSend(
- * QueueHandle_t xQueue,
- * const void * pvItemToQueue,
- * TickType_t xTicksToWait
- * BaseType_t xCopyPosition
- * );
- * @endcode
- *
- * It is preferred that the macros xQueueSend(), xQueueSendToFront() and
- * xQueueSendToBack() are used in place of calling this function directly.
- *
- * Post an item on a queue. The item is queued by copy, not by reference.
- * This function must not be called from an interrupt service routine.
- * See xQueueSendFromISR () for an alternative which may be used in an ISR.
- *
- * @param xQueue The handle to the queue on which the item is to be posted.
- *
- * @param pvItemToQueue A pointer to the item that is to be placed on the
- * queue. The size of the items the queue will hold was defined when the
- * queue was created, so this many bytes will be copied from pvItemToQueue
- * into the queue storage area.
- *
- * @param xTicksToWait The maximum amount of time the task should block
- * waiting for space to become available on the queue, should it already
- * be full. The call will return immediately if this is set to 0 and the
- * queue is full. The time is defined in tick periods so the constant
- * portTICK_PERIOD_MS should be used to convert to real time if this is required.
- *
- * @param xCopyPosition Can take the value queueSEND_TO_BACK to place the
- * item at the back of the queue, or queueSEND_TO_FRONT to place the item
- * at the front of the queue (for high priority messages).
- *
- * @return pdTRUE if the item was successfully posted, otherwise errQUEUE_FULL.
- *
- * Example usage:
- * @code{c}
- * struct AMessage
- * {
- * char ucMessageID;
- * char ucData[ 20 ];
- * } xMessage;
- *
- * uint32_t ulVar = 10UL;
- *
- * void vATask( void *pvParameters )
- * {
- * QueueHandle_t xQueue1, xQueue2;
- * struct AMessage *pxMessage;
- *
- * // Create a queue capable of containing 10 uint32_t values.
- * xQueue1 = xQueueCreate( 10, sizeof( uint32_t ) );
- *
- * // Create a queue capable of containing 10 pointers to AMessage structures.
- * // These should be passed by pointer as they contain a lot of data.
- * xQueue2 = xQueueCreate( 10, sizeof( struct AMessage * ) );
- *
- * // ...
- *
- * if( xQueue1 != 0 )
- * {
- * // Send an uint32_t. Wait for 10 ticks for space to become
- * // available if necessary.
- * if( xQueueGenericSend( xQueue1, ( void * ) &ulVar, ( TickType_t ) 10, queueSEND_TO_BACK ) != pdPASS )
- * {
- * // Failed to post the message, even after 10 ticks.
- * }
- * }
- *
- * if( xQueue2 != 0 )
- * {
- * // Send a pointer to a struct AMessage object. Don't block if the
- * // queue is already full.
- * pxMessage = & xMessage;
- * xQueueGenericSend( xQueue2, ( void * ) &pxMessage, ( TickType_t ) 0, queueSEND_TO_BACK );
- * }
- *
- * // ... Rest of task code.
- * }
- * @endcode
- * \defgroup xQueueSend xQueueSend
- * \ingroup QueueManagement
- */
- BaseType_t xQueueGenericSend( QueueHandle_t xQueue,
- const void * const pvItemToQueue,
- TickType_t xTicksToWait,
- const BaseType_t xCopyPosition );
- /**
- * queue. h
- * @code{c}
- * BaseType_t xQueueReceive(
- * QueueHandle_t xQueue,
- * void *pvBuffer,
- * TickType_t xTicksToWait
- * );
- * @endcode
- *
- * Receive an item from a queue. The item is received by copy so a buffer of
- * adequate size must be provided. The number of bytes copied into the buffer
- * was defined when the queue was created.
- *
- * Successfully received items are removed from the queue.
- *
- * This function must not be used in an interrupt service routine. See
- * xQueueReceiveFromISR for an alternative that can.
- *
- * @param xQueue The handle to the queue from which the item is to be
- * received.
- *
- * @param pvBuffer Pointer to the buffer into which the received item will
- * be copied.
- *
- * @param xTicksToWait The maximum amount of time the task should block
- * waiting for an item to receive should the queue be empty at the time
- * of the call. xQueueReceive() will return immediately if xTicksToWait
- * is zero and the queue is empty. The time is defined in tick periods so the
- * constant portTICK_PERIOD_MS should be used to convert to real time if this is
- * required.
- *
- * @return pdTRUE if an item was successfully received from the queue,
- * otherwise pdFALSE.
- *
- * Example usage:
- * @code{c}
- * struct AMessage
- * {
- * char ucMessageID;
- * char ucData[ 20 ];
- * } xMessage;
- *
- * QueueHandle_t xQueue;
- *
- * // Task to create a queue and post a value.
- * void vATask( void *pvParameters )
- * {
- * struct AMessage *pxMessage;
- *
- * // Create a queue capable of containing 10 pointers to AMessage structures.
- * // These should be passed by pointer as they contain a lot of data.
- * xQueue = xQueueCreate( 10, sizeof( struct AMessage * ) );
- * if( xQueue == 0 )
- * {
- * // Failed to create the queue.
- * }
- *
- * // ...
- *
- * // Send a pointer to a struct AMessage object. Don't block if the
- * // queue is already full.
- * pxMessage = & xMessage;
- * xQueueSend( xQueue, ( void * ) &pxMessage, ( TickType_t ) 0 );
- *
- * // ... Rest of task code.
- * }
- *
- * // Task to receive from the queue.
- * void vADifferentTask( void *pvParameters )
- * {
- * struct AMessage *pxRxedMessage;
- *
- * if( xQueue != 0 )
- * {
- * // Receive a message on the created queue. Block for 10 ticks if a
- * // message is not immediately available.
- * if( xQueueReceive( xQueue, &( pxRxedMessage ), ( TickType_t ) 10 ) )
- * {
- * // pcRxedMessage now points to the struct AMessage variable posted
- * // by vATask.
- * }
- * }
- *
- * // ... Rest of task code.
- * }
- * @endcode
- * \defgroup xQueueReceive xQueueReceive
- * \ingroup QueueManagement
- */
- BaseType_t xQueueReceive( QueueHandle_t xQueue,
- void * const pvBuffer,
- TickType_t xTicksToWait );
- /**
- * queue. h
- * @code{c}
- * void vQueueDelete( QueueHandle_t xQueue );
- * @endcode
- *
- * Delete a queue - freeing all the memory allocated for storing of items
- * placed on the queue.
- *
- * @param xQueue A handle to the queue to be deleted.
- *
- * \defgroup vQueueDelete vQueueDelete
- * \ingroup QueueManagement
- */
- void vQueueDelete( QueueHandle_t xQueue );
- /**
- * queue. h
- * @code{c}
- * BaseType_t xQueueSendToFrontFromISR(
- * QueueHandle_t xQueue,
- * const void *pvItemToQueue,
- * BaseType_t *pxHigherPriorityTaskWoken
- * );
- * @endcode
- *
- * This is a macro that calls xQueueGenericSendFromISR().
- *
- * Post an item to the front of a queue. It is safe to use this macro from
- * within an interrupt service routine.
- *
- * Items are queued by copy not reference so it is preferable to only
- * queue small items, especially when called from an ISR. In most cases
- * it would be preferable to store a pointer to the item being queued.
- *
- * @param xQueue The handle to the queue on which the item is to be posted.
- *
- * @param pvItemToQueue A pointer to the item that is to be placed on the
- * queue. The size of the items the queue will hold was defined when the
- * queue was created, so this many bytes will be copied from pvItemToQueue
- * into the queue storage area.
- *
- * @param pxHigherPriorityTaskWoken xQueueSendToFrontFromISR() will set
- * *pxHigherPriorityTaskWoken to pdTRUE if sending to the queue caused a task
- * to unblock, and the unblocked task has a priority higher than the currently
- * running task. If xQueueSendToFromFromISR() sets this value to pdTRUE then
- * a context switch should be requested before the interrupt is exited.
- *
- * @return pdTRUE if the data was successfully sent to the queue, otherwise
- * errQUEUE_FULL.
- *
- * Example usage for buffered IO (where the ISR can obtain more than one value
- * per call):
- * @code{c}
- * void vBufferISR( void )
- * {
- * char cIn;
- * BaseType_t xHigherPrioritTaskWoken;
- *
- * // We have not woken a task at the start of the ISR.
- * xHigherPriorityTaskWoken = pdFALSE;
- *
- * // Loop until the buffer is empty.
- * do
- * {
- * // Obtain a byte from the buffer.
- * cIn = portINPUT_BYTE( RX_REGISTER_ADDRESS );
- *
- * // Post the byte.
- * xQueueSendToFrontFromISR( xRxQueue, &cIn, &xHigherPriorityTaskWoken );
- *
- * } while( portINPUT_BYTE( BUFFER_COUNT ) );
- *
- * // Now the buffer is empty we can switch context if necessary.
- * if( xHigherPriorityTaskWoken )
- * {
- * taskYIELD ();
- * }
- * }
- * @endcode
- *
- * \defgroup xQueueSendFromISR xQueueSendFromISR
- * \ingroup QueueManagement
- */
- #define xQueueSendToFrontFromISR( xQueue, pvItemToQueue, pxHigherPriorityTaskWoken ) \
- xQueueGenericSendFromISR( ( xQueue ), ( pvItemToQueue ), ( pxHigherPriorityTaskWoken ), queueSEND_TO_FRONT )
- /**
- * queue. h
- * @code{c}
- * BaseType_t xQueueSendToBackFromISR(
- * QueueHandle_t xQueue,
- * const void *pvItemToQueue,
- * BaseType_t *pxHigherPriorityTaskWoken
- * );
- * @endcode
- *
- * This is a macro that calls xQueueGenericSendFromISR().
- *
- * Post an item to the back of a queue. It is safe to use this macro from
- * within an interrupt service routine.
- *
- * Items are queued by copy not reference so it is preferable to only
- * queue small items, especially when called from an ISR. In most cases
- * it would be preferable to store a pointer to the item being queued.
- *
- * @param xQueue The handle to the queue on which the item is to be posted.
- *
- * @param pvItemToQueue A pointer to the item that is to be placed on the
- * queue. The size of the items the queue will hold was defined when the
- * queue was created, so this many bytes will be copied from pvItemToQueue
- * into the queue storage area.
- *
- * @param pxHigherPriorityTaskWoken xQueueSendToBackFromISR() will set
- * *pxHigherPriorityTaskWoken to pdTRUE if sending to the queue caused a task
- * to unblock, and the unblocked task has a priority higher than the currently
- * running task. If xQueueSendToBackFromISR() sets this value to pdTRUE then
- * a context switch should be requested before the interrupt is exited.
- *
- * @return pdTRUE if the data was successfully sent to the queue, otherwise
- * errQUEUE_FULL.
- *
- * Example usage for buffered IO (where the ISR can obtain more than one value
- * per call):
- * @code{c}
- * void vBufferISR( void )
- * {
- * char cIn;
- * BaseType_t xHigherPriorityTaskWoken;
- *
- * // We have not woken a task at the start of the ISR.
- * xHigherPriorityTaskWoken = pdFALSE;
- *
- * // Loop until the buffer is empty.
- * do
- * {
- * // Obtain a byte from the buffer.
- * cIn = portINPUT_BYTE( RX_REGISTER_ADDRESS );
- *
- * // Post the byte.
- * xQueueSendToBackFromISR( xRxQueue, &cIn, &xHigherPriorityTaskWoken );
- *
- * } while( portINPUT_BYTE( BUFFER_COUNT ) );
- *
- * // Now the buffer is empty we can switch context if necessary.
- * if( xHigherPriorityTaskWoken )
- * {
- * taskYIELD ();
- * }
- * }
- * @endcode
- *
- * \defgroup xQueueSendFromISR xQueueSendFromISR
- * \ingroup QueueManagement
- */
- #define xQueueSendToBackFromISR( xQueue, pvItemToQueue, pxHigherPriorityTaskWoken ) \
- xQueueGenericSendFromISR( ( xQueue ), ( pvItemToQueue ), ( pxHigherPriorityTaskWoken ), queueSEND_TO_BACK )
- /**
- * queue. h
- * @code{c}
- * BaseType_t xQueueSendFromISR(
- * QueueHandle_t xQueue,
- * const void *pvItemToQueue,
- * BaseType_t *pxHigherPriorityTaskWoken
- * );
- * @endcode
- *
- * This is a macro that calls xQueueGenericSendFromISR(). It is included
- * for backward compatibility with versions of FreeRTOS.org that did not
- * include the xQueueSendToBackFromISR() and xQueueSendToFrontFromISR()
- * macros.
- *
- * Post an item to the back of a queue. It is safe to use this function from
- * within an interrupt service routine.
- *
- * Items are queued by copy not reference so it is preferable to only
- * queue small items, especially when called from an ISR. In most cases
- * it would be preferable to store a pointer to the item being queued.
- *
- * @param xQueue The handle to the queue on which the item is to be posted.
- *
- * @param pvItemToQueue A pointer to the item that is to be placed on the
- * queue. The size of the items the queue will hold was defined when the
- * queue was created, so this many bytes will be copied from pvItemToQueue
- * into the queue storage area.
- *
- * @param pxHigherPriorityTaskWoken xQueueSendFromISR() will set
- * *pxHigherPriorityTaskWoken to pdTRUE if sending to the queue caused a task
- * to unblock, and the unblocked task has a priority higher than the currently
- * running task. If xQueueSendFromISR() sets this value to pdTRUE then
- * a context switch should be requested before the interrupt is exited.
- *
- * @return pdTRUE if the data was successfully sent to the queue, otherwise
- * errQUEUE_FULL.
- *
- * Example usage for buffered IO (where the ISR can obtain more than one value
- * per call):
- * @code{c}
- * void vBufferISR( void )
- * {
- * char cIn;
- * BaseType_t xHigherPriorityTaskWoken;
- *
- * // We have not woken a task at the start of the ISR.
- * xHigherPriorityTaskWoken = pdFALSE;
- *
- * // Loop until the buffer is empty.
- * do
- * {
- * // Obtain a byte from the buffer.
- * cIn = portINPUT_BYTE( RX_REGISTER_ADDRESS );
- *
- * // Post the byte.
- * xQueueSendFromISR( xRxQueue, &cIn, &xHigherPriorityTaskWoken );
- *
- * } while( portINPUT_BYTE( BUFFER_COUNT ) );
- *
- * // Now the buffer is empty we can switch context if necessary.
- * if( xHigherPriorityTaskWoken )
- * {
- * // Actual macro used here is port specific.
- * portYIELD_FROM_ISR ();
- * }
- * }
- * @endcode
- *
- * \defgroup xQueueSendFromISR xQueueSendFromISR
- * \ingroup QueueManagement
- */
- #define xQueueSendFromISR( xQueue, pvItemToQueue, pxHigherPriorityTaskWoken ) \
- xQueueGenericSendFromISR( ( xQueue ), ( pvItemToQueue ), ( pxHigherPriorityTaskWoken ), queueSEND_TO_BACK )
- /**
- * queue. h
- * @code{c}
- * BaseType_t xQueueGenericSendFromISR(
- * QueueHandle_t xQueue,
- * const void *pvItemToQueue,
- * BaseType_t *pxHigherPriorityTaskWoken,
- * BaseType_t xCopyPosition
- * );
- * @endcode
- *
- * It is preferred that the macros xQueueSendFromISR(),
- * xQueueSendToFrontFromISR() and xQueueSendToBackFromISR() be used in place
- * of calling this function directly. xQueueGiveFromISR() is an
- * equivalent for use by semaphores that don't actually copy any data.
- *
- * Post an item on a queue. It is safe to use this function from within an
- * interrupt service routine.
- *
- * Items are queued by copy not reference so it is preferable to only
- * queue small items, especially when called from an ISR. In most cases
- * it would be preferable to store a pointer to the item being queued.
- *
- * @param xQueue The handle to the queue on which the item is to be posted.
- *
- * @param pvItemToQueue A pointer to the item that is to be placed on the
- * queue. The size of the items the queue will hold was defined when the
- * queue was created, so this many bytes will be copied from pvItemToQueue
- * into the queue storage area.
- *
- * @param pxHigherPriorityTaskWoken xQueueGenericSendFromISR() will set
- * *pxHigherPriorityTaskWoken to pdTRUE if sending to the queue caused a task
- * to unblock, and the unblocked task has a priority higher than the currently
- * running task. If xQueueGenericSendFromISR() sets this value to pdTRUE then
- * a context switch should be requested before the interrupt is exited.
- *
- * @param xCopyPosition Can take the value queueSEND_TO_BACK to place the
- * item at the back of the queue, or queueSEND_TO_FRONT to place the item
- * at the front of the queue (for high priority messages).
- *
- * @return pdTRUE if the data was successfully sent to the queue, otherwise
- * errQUEUE_FULL.
- *
- * Example usage for buffered IO (where the ISR can obtain more than one value
- * per call):
- * @code{c}
- * void vBufferISR( void )
- * {
- * char cIn;
- * BaseType_t xHigherPriorityTaskWokenByPost;
- *
- * // We have not woken a task at the start of the ISR.
- * xHigherPriorityTaskWokenByPost = pdFALSE;
- *
- * // Loop until the buffer is empty.
- * do
- * {
- * // Obtain a byte from the buffer.
- * cIn = portINPUT_BYTE( RX_REGISTER_ADDRESS );
- *
- * // Post each byte.
- * xQueueGenericSendFromISR( xRxQueue, &cIn, &xHigherPriorityTaskWokenByPost, queueSEND_TO_BACK );
- *
- * } while( portINPUT_BYTE( BUFFER_COUNT ) );
- *
- * // Now the buffer is empty we can switch context if necessary. Note that the
- * // name of the yield function required is port specific.
- * if( xHigherPriorityTaskWokenByPost )
- * {
- * portYIELD_FROM_ISR();
- * }
- * }
- * @endcode
- *
- * \defgroup xQueueSendFromISR xQueueSendFromISR
- * \ingroup QueueManagement
- */
- BaseType_t xQueueGenericSendFromISR( QueueHandle_t xQueue,
- const void * const pvItemToQueue,
- BaseType_t * const pxHigherPriorityTaskWoken,
- const BaseType_t xCopyPosition );
- BaseType_t xQueueGiveFromISR( QueueHandle_t xQueue,
- BaseType_t * const pxHigherPriorityTaskWoken );
- /**
- * queue. h
- * @code{c}
- * BaseType_t xQueueReceiveFromISR(
- * QueueHandle_t xQueue,
- * void *pvBuffer,
- * BaseType_t *pxTaskWoken
- * );
- * @endcode
- *
- * Receive an item from a queue. It is safe to use this function from within an
- * interrupt service routine.
- *
- * @param xQueue The handle to the queue from which the item is to be
- * received.
- *
- * @param pvBuffer Pointer to the buffer into which the received item will
- * be copied.
- *
- * @param pxTaskWoken A task may be blocked waiting for space to become
- * available on the queue. If xQueueReceiveFromISR causes such a task to
- * unblock *pxTaskWoken will get set to pdTRUE, otherwise *pxTaskWoken will
- * remain unchanged.
- *
- * @return pdTRUE if an item was successfully received from the queue,
- * otherwise pdFALSE.
- *
- * Example usage:
- * @code{c}
- *
- * QueueHandle_t xQueue;
- *
- * // Function to create a queue and post some values.
- * void vAFunction( void *pvParameters )
- * {
- * char cValueToPost;
- * const TickType_t xTicksToWait = ( TickType_t )0xff;
- *
- * // Create a queue capable of containing 10 characters.
- * xQueue = xQueueCreate( 10, sizeof( char ) );
- * if( xQueue == 0 )
- * {
- * // Failed to create the queue.
- * }
- *
- * // ...
- *
- * // Post some characters that will be used within an ISR. If the queue
- * // is full then this task will block for xTicksToWait ticks.
- * cValueToPost = 'a';
- * xQueueSend( xQueue, ( void * ) &cValueToPost, xTicksToWait );
- * cValueToPost = 'b';
- * xQueueSend( xQueue, ( void * ) &cValueToPost, xTicksToWait );
- *
- * // ... keep posting characters ... this task may block when the queue
- * // becomes full.
- *
- * cValueToPost = 'c';
- * xQueueSend( xQueue, ( void * ) &cValueToPost, xTicksToWait );
- * }
- *
- * // ISR that outputs all the characters received on the queue.
- * void vISR_Routine( void )
- * {
- * BaseType_t xTaskWokenByReceive = pdFALSE;
- * char cRxedChar;
- *
- * while( xQueueReceiveFromISR( xQueue, ( void * ) &cRxedChar, &xTaskWokenByReceive) )
- * {
- * // A character was received. Output the character now.
- * vOutputCharacter( cRxedChar );
- *
- * // If removing the character from the queue woke the task that was
- * // posting onto the queue cTaskWokenByReceive will have been set to
- * // pdTRUE. No matter how many times this loop iterates only one
- * // task will be woken.
- * }
- *
- * if( cTaskWokenByPost != ( char ) pdFALSE;
- * {
- * taskYIELD ();
- * }
- * }
- * @endcode
- * \defgroup xQueueReceiveFromISR xQueueReceiveFromISR
- * \ingroup QueueManagement
- */
- BaseType_t xQueueReceiveFromISR( QueueHandle_t xQueue,
- void * const pvBuffer,
- BaseType_t * const pxHigherPriorityTaskWoken );
- /*
- * For internal use only. Use xSemaphoreCreateMutex(),
- * xSemaphoreCreateCounting() or xSemaphoreGetMutexHolder() instead of calling
- * these functions directly.
- */
- QueueHandle_t xQueueCreateMutex( const uint8_t ucQueueType );
- QueueHandle_t xQueueCreateMutexStatic( const uint8_t ucQueueType,
- StaticQueue_t * pxStaticQueue );
- QueueHandle_t xQueueCreateCountingSemaphore( const UBaseType_t uxMaxCount,
- const UBaseType_t uxInitialCount );
- QueueHandle_t xQueueCreateCountingSemaphoreStatic( const UBaseType_t uxMaxCount,
- const UBaseType_t uxInitialCount,
- StaticQueue_t * pxStaticQueue );
- BaseType_t xQueueSemaphoreTake( QueueHandle_t xQueue,
- TickType_t xTicksToWait );
- /*
- * For internal use only. Use xSemaphoreTakeMutexRecursive() or
- * xSemaphoreGiveMutexRecursive() instead of calling these functions directly.
- */
- BaseType_t xQueueTakeMutexRecursive( QueueHandle_t xMutex,
- TickType_t xTicksToWait );
- BaseType_t xQueueGiveMutexRecursive( QueueHandle_t xMutex );
- /*
- * Reset a queue back to its original empty state. The return value is now
- * obsolete and is always set to pdPASS.
- */
- #define xQueueReset( xQueue ) xQueueGenericReset( xQueue, pdFALSE )
- /*
- * Generic version of the function used to create a queue using dynamic memory
- * allocation. This is called by other functions and macros that create other
- * RTOS objects that use the queue structure as their base.
- */
- #if ( configSUPPORT_DYNAMIC_ALLOCATION == 1 )
- QueueHandle_t xQueueGenericCreate( const UBaseType_t uxQueueLength,
- const UBaseType_t uxItemSize,
- const uint8_t ucQueueType );
- #endif
- /*
- * Generic version of the function used to create a queue using dynamic memory
- * allocation. This is called by other functions and macros that create other
- * RTOS objects that use the queue structure as their base.
- */
- #if ( configSUPPORT_STATIC_ALLOCATION == 1 )
- QueueHandle_t xQueueGenericCreateStatic( const UBaseType_t uxQueueLength,
- const UBaseType_t uxItemSize,
- uint8_t * pucQueueStorage,
- StaticQueue_t * pxStaticQueue,
- const uint8_t ucQueueType );
- #endif
- /* Not public API functions. */
- BaseType_t xQueueGenericReset( QueueHandle_t xQueue,
- BaseType_t xNewQueue );
- /* *INDENT-OFF* */
- #ifdef __cplusplus
- }
- #endif
- /* *INDENT-ON* */
- #endif /* QUEUE_H */
|