uc-sdk
 All Classes Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
xQueueReceive

queue. h

 portBASE_TYPE xQueuePeek(
                             xQueueHandle xQueue,
                             void *pvBuffer,
                             portTickType xTicksToWait
                         );

This is a macro that calls the xQueueGenericReceive() function.

Receive an item from a queue without removing the item from the 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 remain on the queue so will be returned again by the next call, or a call to xQueueReceive().

This macro must not be used in an interrupt service routine.

Parameters
pxQueueThe handle to the queue from which the item is to be received.
pvBufferPointer to the buffer into which the received item will be copied.
xTicksToWaitThe 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. The time is defined in tick periods so the constant portTICK_RATE_MS should be used to convert to real time if this is required. xQueuePeek() will return immediately if xTicksToWait is 0 and the queue is empty.
Returns
pdTRUE if an item was successfully received from the queue, otherwise pdFALSE.

Example usage:

 struct AMessage
 {
    char ucMessageID;
    char ucData[ 20 ];
 } xMessage;
 xQueueHandle 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, ( portTickType ) 0 );
... Rest of task code.
 }
Task to peek the data from the queue.
 void vADifferentTask( void *pvParameters )
 {
 struct AMessage *pxRxedMessage;
    if( xQueue != 0 )
    {
Peek a message on the created queue.  Block for 10 ticks if a
message is not immediately available.
        if( xQueuePeek( xQueue, &( pxRxedMessage ), ( portTickType ) 10 ) )
        {
pcRxedMessage now points to the struct AMessage variable posted
by vATask, but the item still remains on the queue.
        }
    }
... Rest of task code.
 }
 

queue. h

 portBASE_TYPE xQueueReceive(
                                 xQueueHandle xQueue,
                                 void *pvBuffer,
                                 portTickType xTicksToWait
                            );

This is a macro that calls the xQueueGenericReceive() function.

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.

Parameters
pxQueueThe handle to the queue from which the item is to be received.
pvBufferPointer to the buffer into which the received item will be copied.
xTicksToWaitThe 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_RATE_MS should be used to convert to real time if this is required.
Returns
pdTRUE if an item was successfully received from the queue, otherwise pdFALSE.

Example usage:

 struct AMessage
 {
    char ucMessageID;
    char ucData[ 20 ];
 } xMessage;
 xQueueHandle 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, ( portTickType ) 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 ), ( portTickType ) 10 ) )
        {
pcRxedMessage now points to the struct AMessage variable posted
by vATask.
        }
    }
... Rest of task code.
 }
 

queue. h

 portBASE_TYPE xQueueGenericReceive(
                                       xQueueHandle xQueue,
                                       void *pvBuffer,
                                       portTickType xTicksToWait
                                       portBASE_TYPE    xJustPeek
                                    );

It is preferred that the macro xQueueReceive() be used rather than calling this function directly.

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.

This function must not be used in an interrupt service routine. See xQueueReceiveFromISR for an alternative that can.

Parameters
pxQueueThe handle to the queue from which the item is to be received.
pvBufferPointer to the buffer into which the received item will be copied.
xTicksToWaitThe 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. The time is defined in tick periods so the constant portTICK_RATE_MS should be used to convert to real time if this is required. xQueueGenericReceive() will return immediately if the queue is empty and xTicksToWait is 0.
xJustPeekWhen set to true, the item received from the queue is not actually removed from the queue - meaning a subsequent call to xQueueReceive() will return the same item. When set to false, the item being received from the queue is also removed from the queue.
Returns
pdTRUE if an item was successfully received from the queue, otherwise pdFALSE.

Example usage:

 struct AMessage
 {
    char ucMessageID;
    char ucData[ 20 ];
 } xMessage;
 xQueueHandle 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, ( portTickType ) 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( xQueueGenericReceive( xQueue, &( pxRxedMessage ), ( portTickType ) 10 ) )
        {
pcRxedMessage now points to the struct AMessage variable posted
by vATask.
        }
    }
... Rest of task code.
 }