GM6000 Digital Heater Controller Branch: main
SDX-1330
queue.h
1/*
2 * FreeRTOS Kernel V10.0.0
3 * Copyright (C) 2017 Amazon.com, Inc. or its affiliates. All Rights Reserved.
4 *
5 * Permission is hereby granted, free of charge, to any person obtaining a copy of
6 * this software and associated documentation files (the "Software"), to deal in
7 * the Software without restriction, including without limitation the rights to
8 * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
9 * the Software, and to permit persons to whom the Software is furnished to do so,
10 * subject to the following conditions:
11 *
12 * The above copyright notice and this permission notice shall be included in all
13 * copies or substantial portions of the Software. If you wish to use our Amazon
14 * FreeRTOS name, please do so in a fair use way that does not cause confusion.
15 *
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
18 * FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
19 * COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
20 * IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
21 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
22 *
23 * http://www.FreeRTOS.org
24 * http://aws.amazon.com/freertos
25 *
26 * 1 tab == 4 spaces!
27 */
28
29#ifndef QUEUE_H
30#define QUEUE_H
31
32#ifndef INC_FREERTOS_H
33#error "include FreeRTOS.h" must appear in source files before "include queue.h"
34#endif
35
36#ifdef __cplusplus
37extern "C" {
38#endif
39
40/**
41 * Type by which queues are referenced. For example, a call to xQueueCreate()
42 * returns an QueueHandle_t variable that can then be used as a parameter to
43 * xQueueSend(), xQueueReceive(), etc.
44 */
45typedef void *QueueHandle_t;
46
47/**
48 * Type by which queue sets are referenced. For example, a call to
49 * xQueueCreateSet() returns an xQueueSet variable that can then be used as a
50 * parameter to xQueueSelectFromSet(), xQueueAddToSet(), etc.
51 */
52typedef void *QueueSetHandle_t;
53
54/**
55 * Queue sets can contain both queues and semaphores, so the
56 * QueueSetMemberHandle_t is defined as a type to be used where a parameter or
57 * return value can be either an QueueHandle_t or an SemaphoreHandle_t.
58 */
59typedef void *QueueSetMemberHandle_t;
60
61/* For internal use only. */
62#define queueSEND_TO_BACK ((BaseType_t)0)
63#define queueSEND_TO_FRONT ((BaseType_t)1)
64#define queueOVERWRITE ((BaseType_t)2)
65
66/* For internal use only. These definitions *must* match those in queue.c. */
67#define queueQUEUE_TYPE_BASE ((uint8_t)0U)
68#define queueQUEUE_TYPE_SET ((uint8_t)0U)
69#define queueQUEUE_TYPE_MUTEX ((uint8_t)1U)
70#define queueQUEUE_TYPE_COUNTING_SEMAPHORE ((uint8_t)2U)
71#define queueQUEUE_TYPE_BINARY_SEMAPHORE ((uint8_t)3U)
72#define queueQUEUE_TYPE_RECURSIVE_MUTEX ((uint8_t)4U)
73
74/**
75 * queue. h
76 * <pre>
77 QueueHandle_t xQueueCreate(
78 UBaseType_t uxQueueLength,
79 UBaseType_t uxItemSize
80 );
81 * </pre>
82 *
83 * Creates a new queue instance, and returns a handle by which the new queue
84 * can be referenced.
85 *
86 * Internally, within the FreeRTOS implementation, queues use two blocks of
87 * memory. The first block is used to hold the queue's data structures. The
88 * second block is used to hold items placed into the queue. If a queue is
89 * created using xQueueCreate() then both blocks of memory are automatically
90 * dynamically allocated inside the xQueueCreate() function. (see
91 * http://www.freertos.org/a00111.html). If a queue is created using
92 * xQueueCreateStatic() then the application writer must provide the memory that
93 * will get used by the queue. xQueueCreateStatic() therefore allows a queue to
94 * be created without using any dynamic memory allocation.
95 *
96 * http://www.FreeRTOS.org/Embedded-RTOS-Queues.html
97 *
98 * @param uxQueueLength The maximum number of items that the queue can contain.
99 *
100 * @param uxItemSize The number of bytes each item in the queue will require.
101 * Items are queued by copy, not by reference, so this is the number of bytes
102 * that will be copied for each posted item. Each item on the queue must be
103 * the same size.
104 *
105 * @return If the queue is successfully create then a handle to the newly
106 * created queue is returned. If the queue cannot be created then 0 is
107 * returned.
108 *
109 * Example usage:
110 <pre>
111 struct AMessage
112 {
113 char ucMessageID;
114 char ucData[ 20 ];
115 };
116
117 void vATask( void *pvParameters )
118 {
119 QueueHandle_t xQueue1, xQueue2;
120
121 // Create a queue capable of containing 10 uint32_t values.
122 xQueue1 = xQueueCreate( 10, sizeof( uint32_t ) );
123 if( xQueue1 == 0 )
124 {
125 // Queue was not created and must not be used.
126 }
127
128 // Create a queue capable of containing 10 pointers to AMessage structures.
129 // These should be passed by pointer as they contain a lot of data.
130 xQueue2 = xQueueCreate( 10, sizeof( struct AMessage * ) );
131 if( xQueue2 == 0 )
132 {
133 // Queue was not created and must not be used.
134 }
135
136 // ... Rest of task code.
137 }
138 </pre>
139 * \defgroup xQueueCreate xQueueCreate
140 * \ingroup QueueManagement
141 */
142#if (configSUPPORT_DYNAMIC_ALLOCATION == 1)
143#define xQueueCreate(uxQueueLength, uxItemSize) \
144 xQueueGenericCreate((uxQueueLength), (uxItemSize), (queueQUEUE_TYPE_BASE))
145#endif
146
147/**
148 * queue. h
149 * <pre>
150 QueueHandle_t xQueueCreateStatic(
151 UBaseType_t uxQueueLength,
152 UBaseType_t uxItemSize,
153 uint8_t *pucQueueStorageBuffer,
154 StaticQueue_t *pxQueueBuffer
155 );
156 * </pre>
157 *
158 * Creates a new queue instance, and returns a handle by which the new queue
159 * can be referenced.
160 *
161 * Internally, within the FreeRTOS implementation, queues use two blocks of
162 * memory. The first block is used to hold the queue's data structures. The
163 * second block is used to hold items placed into the queue. If a queue is
164 * created using xQueueCreate() then both blocks of memory are automatically
165 * dynamically allocated inside the xQueueCreate() function. (see
166 * http://www.freertos.org/a00111.html). If a queue is created using
167 * xQueueCreateStatic() then the application writer must provide the memory that
168 * will get used by the queue. xQueueCreateStatic() therefore allows a queue to
169 * be created without using any dynamic memory allocation.
170 *
171 * http://www.FreeRTOS.org/Embedded-RTOS-Queues.html
172 *
173 * @param uxQueueLength The maximum number of items that the queue can contain.
174 *
175 * @param uxItemSize The number of bytes each item in the queue will require.
176 * Items are queued by copy, not by reference, so this is the number of bytes
177 * that will be copied for each posted item. Each item on the queue must be
178 * the same size.
179 *
180 * @param pucQueueStorageBuffer If uxItemSize is not zero then
181 * pucQueueStorageBuffer must point to a uint8_t array that is at least large
182 * enough to hold the maximum number of items that can be in the queue at any
183 * one time - which is ( uxQueueLength * uxItemsSize ) bytes. If uxItemSize is
184 * zero then pucQueueStorageBuffer can be NULL.
185 *
186 * @param pxQueueBuffer Must point to a variable of type StaticQueue_t, which
187 * will be used to hold the queue's data structure.
188 *
189 * @return If the queue is created then a handle to the created queue is
190 * returned. If pxQueueBuffer is NULL then NULL is returned.
191 *
192 * Example usage:
193 <pre>
194 struct AMessage
195 {
196 char ucMessageID;
197 char ucData[ 20 ];
198 };
199
200 #define QUEUE_LENGTH 10
201 #define ITEM_SIZE sizeof( uint32_t )
202
203 // xQueueBuffer will hold the queue structure.
204 StaticQueue_t xQueueBuffer;
205
206 // ucQueueStorage will hold the items posted to the queue. Must be at least
207 // [(queue length) * ( queue item size)] bytes long.
208 uint8_t ucQueueStorage[ QUEUE_LENGTH * ITEM_SIZE ];
209
210 void vATask( void *pvParameters )
211 {
212 QueueHandle_t xQueue1;
213
214 // Create a queue capable of containing 10 uint32_t values.
215 xQueue1 = xQueueCreate( QUEUE_LENGTH, // The number of items the queue can hold.
216 ITEM_SIZE // The size of each item in the queue
217 &( ucQueueStorage[ 0 ] ), // The buffer that will hold the items in the queue.
218 &xQueueBuffer ); // The buffer that will hold the queue structure.
219
220 // The queue is guaranteed to be created successfully as no dynamic memory
221 // allocation is used. Therefore xQueue1 is now a handle to a valid queue.
222
223 // ... Rest of task code.
224 }
225 </pre>
226 * \defgroup xQueueCreateStatic xQueueCreateStatic
227 * \ingroup QueueManagement
228 */
229#if (configSUPPORT_STATIC_ALLOCATION == 1)
230#define xQueueCreateStatic(uxQueueLength, uxItemSize, pucQueueStorage, pxQueueBuffer) \
231 xQueueGenericCreateStatic((uxQueueLength), (uxItemSize), (pucQueueStorage), (pxQueueBuffer), (queueQUEUE_TYPE_BASE))
232#endif /* configSUPPORT_STATIC_ALLOCATION */
233
234/**
235 * queue. h
236 * <pre>
237 BaseType_t xQueueSendToToFront(
238 QueueHandle_t xQueue,
239 const void *pvItemToQueue,
240 TickType_t xTicksToWait
241 );
242 * </pre>
243 *
244 * Post an item to the front of a queue. The item is queued by copy, not by
245 * reference. This function must not be called from an interrupt service
246 * routine. See xQueueSendFromISR () for an alternative which may be used
247 * in an ISR.
248 *
249 * @param xQueue The handle to the queue on which the item is to be posted.
250 *
251 * @param pvItemToQueue A pointer to the item that is to be placed on the
252 * queue. The size of the items the queue will hold was defined when the
253 * queue was created, so this many bytes will be copied from pvItemToQueue
254 * into the queue storage area.
255 *
256 * @param xTicksToWait The maximum amount of time the task should block
257 * waiting for space to become available on the queue, should it already
258 * be full. The call will return immediately if this is set to 0 and the
259 * queue is full. The time is defined in tick periods so the constant
260 * portTICK_PERIOD_MS should be used to convert to real time if this is required.
261 *
262 * @return pdTRUE if the item was successfully posted, otherwise errQUEUE_FULL.
263 *
264 * Example usage:
265 <pre>
266 struct AMessage
267 {
268 char ucMessageID;
269 char ucData[ 20 ];
270 } xMessage;
271
272 uint32_t ulVar = 10UL;
273
274 void vATask( void *pvParameters )
275 {
276 QueueHandle_t xQueue1, xQueue2;
277 struct AMessage *pxMessage;
278
279 // Create a queue capable of containing 10 uint32_t values.
280 xQueue1 = xQueueCreate( 10, sizeof( uint32_t ) );
281
282 // Create a queue capable of containing 10 pointers to AMessage structures.
283 // These should be passed by pointer as they contain a lot of data.
284 xQueue2 = xQueueCreate( 10, sizeof( struct AMessage * ) );
285
286 // ...
287
288 if( xQueue1 != 0 )
289 {
290 // Send an uint32_t. Wait for 10 ticks for space to become
291 // available if necessary.
292 if( xQueueSendToFront( xQueue1, ( void * ) &ulVar, ( TickType_t ) 10 ) != pdPASS )
293 {
294 // Failed to post the message, even after 10 ticks.
295 }
296 }
297
298 if( xQueue2 != 0 )
299 {
300 // Send a pointer to a struct AMessage object. Don't block if the
301 // queue is already full.
302 pxMessage = & xMessage;
303 xQueueSendToFront( xQueue2, ( void * ) &pxMessage, ( TickType_t ) 0 );
304 }
305
306 // ... Rest of task code.
307 }
308 </pre>
309 * \defgroup xQueueSend xQueueSend
310 * \ingroup QueueManagement
311 */
312#define xQueueSendToFront(xQueue, pvItemToQueue, xTicksToWait) \
313 xQueueGenericSend((xQueue), (pvItemToQueue), (xTicksToWait), queueSEND_TO_FRONT)
314
315/**
316 * queue. h
317 * <pre>
318 BaseType_t xQueueSendToBack(
319 QueueHandle_t xQueue,
320 const void *pvItemToQueue,
321 TickType_t xTicksToWait
322 );
323 * </pre>
324 *
325 * This is a macro that calls xQueueGenericSend().
326 *
327 * Post an item to the back of a queue. The item is queued by copy, not by
328 * reference. This function must not be called from an interrupt service
329 * routine. See xQueueSendFromISR () for an alternative which may be used
330 * in an ISR.
331 *
332 * @param xQueue The handle to the queue on which the item is to be posted.
333 *
334 * @param pvItemToQueue A pointer to the item that is to be placed on the
335 * queue. The size of the items the queue will hold was defined when the
336 * queue was created, so this many bytes will be copied from pvItemToQueue
337 * into the queue storage area.
338 *
339 * @param xTicksToWait The maximum amount of time the task should block
340 * waiting for space to become available on the queue, should it already
341 * be full. The call will return immediately if this is set to 0 and the queue
342 * is full. The time is defined in tick periods so the constant
343 * portTICK_PERIOD_MS should be used to convert to real time if this is required.
344 *
345 * @return pdTRUE if the item was successfully posted, otherwise errQUEUE_FULL.
346 *
347 * Example usage:
348 <pre>
349 struct AMessage
350 {
351 char ucMessageID;
352 char ucData[ 20 ];
353 } xMessage;
354
355 uint32_t ulVar = 10UL;
356
357 void vATask( void *pvParameters )
358 {
359 QueueHandle_t xQueue1, xQueue2;
360 struct AMessage *pxMessage;
361
362 // Create a queue capable of containing 10 uint32_t values.
363 xQueue1 = xQueueCreate( 10, sizeof( uint32_t ) );
364
365 // Create a queue capable of containing 10 pointers to AMessage structures.
366 // These should be passed by pointer as they contain a lot of data.
367 xQueue2 = xQueueCreate( 10, sizeof( struct AMessage * ) );
368
369 // ...
370
371 if( xQueue1 != 0 )
372 {
373 // Send an uint32_t. Wait for 10 ticks for space to become
374 // available if necessary.
375 if( xQueueSendToBack( xQueue1, ( void * ) &ulVar, ( TickType_t ) 10 ) != pdPASS )
376 {
377 // Failed to post the message, even after 10 ticks.
378 }
379 }
380
381 if( xQueue2 != 0 )
382 {
383 // Send a pointer to a struct AMessage object. Don't block if the
384 // queue is already full.
385 pxMessage = & xMessage;
386 xQueueSendToBack( xQueue2, ( void * ) &pxMessage, ( TickType_t ) 0 );
387 }
388
389 // ... Rest of task code.
390 }
391 </pre>
392 * \defgroup xQueueSend xQueueSend
393 * \ingroup QueueManagement
394 */
395#define xQueueSendToBack(xQueue, pvItemToQueue, xTicksToWait) \
396 xQueueGenericSend((xQueue), (pvItemToQueue), (xTicksToWait), queueSEND_TO_BACK)
397
398/**
399 * queue. h
400 * <pre>
401 BaseType_t xQueueSend(
402 QueueHandle_t xQueue,
403 const void * pvItemToQueue,
404 TickType_t xTicksToWait
405 );
406 * </pre>
407 *
408 * This is a macro that calls xQueueGenericSend(). It is included for
409 * backward compatibility with versions of FreeRTOS.org that did not
410 * include the xQueueSendToFront() and xQueueSendToBack() macros. It is
411 * equivalent to xQueueSendToBack().
412 *
413 * Post an item on a queue. The item is queued by copy, not by reference.
414 * This function must not be called from an interrupt service routine.
415 * See xQueueSendFromISR () for an alternative which may be used in an ISR.
416 *
417 * @param xQueue The handle to the queue on which the item is to be posted.
418 *
419 * @param pvItemToQueue A pointer to the item that is to be placed on the
420 * queue. The size of the items the queue will hold was defined when the
421 * queue was created, so this many bytes will be copied from pvItemToQueue
422 * into the queue storage area.
423 *
424 * @param xTicksToWait The maximum amount of time the task should block
425 * waiting for space to become available on the queue, should it already
426 * be full. The call will return immediately if this is set to 0 and the
427 * queue is full. The time is defined in tick periods so the constant
428 * portTICK_PERIOD_MS should be used to convert to real time if this is required.
429 *
430 * @return pdTRUE if the item was successfully posted, otherwise errQUEUE_FULL.
431 *
432 * Example usage:
433 <pre>
434 struct AMessage
435 {
436 char ucMessageID;
437 char ucData[ 20 ];
438 } xMessage;
439
440 uint32_t ulVar = 10UL;
441
442 void vATask( void *pvParameters )
443 {
444 QueueHandle_t xQueue1, xQueue2;
445 struct AMessage *pxMessage;
446
447 // Create a queue capable of containing 10 uint32_t values.
448 xQueue1 = xQueueCreate( 10, sizeof( uint32_t ) );
449
450 // Create a queue capable of containing 10 pointers to AMessage structures.
451 // These should be passed by pointer as they contain a lot of data.
452 xQueue2 = xQueueCreate( 10, sizeof( struct AMessage * ) );
453
454 // ...
455
456 if( xQueue1 != 0 )
457 {
458 // Send an uint32_t. Wait for 10 ticks for space to become
459 // available if necessary.
460 if( xQueueSend( xQueue1, ( void * ) &ulVar, ( TickType_t ) 10 ) != pdPASS )
461 {
462 // Failed to post the message, even after 10 ticks.
463 }
464 }
465
466 if( xQueue2 != 0 )
467 {
468 // Send a pointer to a struct AMessage object. Don't block if the
469 // queue is already full.
470 pxMessage = & xMessage;
471 xQueueSend( xQueue2, ( void * ) &pxMessage, ( TickType_t ) 0 );
472 }
473
474 // ... Rest of task code.
475 }
476 </pre>
477 * \defgroup xQueueSend xQueueSend
478 * \ingroup QueueManagement
479 */
480#define xQueueSend(xQueue, pvItemToQueue, xTicksToWait) \
481 xQueueGenericSend((xQueue), (pvItemToQueue), (xTicksToWait), queueSEND_TO_BACK)
482
483/**
484 * queue. h
485 * <pre>
486 BaseType_t xQueueOverwrite(
487 QueueHandle_t xQueue,
488 const void * pvItemToQueue
489 );
490 * </pre>
491 *
492 * Only for use with queues that have a length of one - so the queue is either
493 * empty or full.
494 *
495 * Post an item on a queue. If the queue is already full then overwrite the
496 * value held in the queue. The item is queued by copy, not by reference.
497 *
498 * This function must not be called from an interrupt service routine.
499 * See xQueueOverwriteFromISR () for an alternative which may be used in an ISR.
500 *
501 * @param xQueue The handle of the queue to which the data is being sent.
502 *
503 * @param pvItemToQueue A pointer to the item that is to be placed on the
504 * queue. The size of the items the queue will hold was defined when the
505 * queue was created, so this many bytes will be copied from pvItemToQueue
506 * into the queue storage area.
507 *
508 * @return xQueueOverwrite() is a macro that calls xQueueGenericSend(), and
509 * therefore has the same return values as xQueueSendToFront(). However, pdPASS
510 * is the only value that can be returned because xQueueOverwrite() will write
511 * to the queue even when the queue is already full.
512 *
513 * Example usage:
514 <pre>
515
516 void vFunction( void *pvParameters )
517 {
518 QueueHandle_t xQueue;
519 uint32_t ulVarToSend, ulValReceived;
520
521 // Create a queue to hold one uint32_t value. It is strongly
522 // recommended *not* to use xQueueOverwrite() on queues that can
523 // contain more than one value, and doing so will trigger an assertion
524 // if configASSERT() is defined.
525 xQueue = xQueueCreate( 1, sizeof( uint32_t ) );
526
527 // Write the value 10 to the queue using xQueueOverwrite().
528 ulVarToSend = 10;
529 xQueueOverwrite( xQueue, &ulVarToSend );
530
531 // Peeking the queue should now return 10, but leave the value 10 in
532 // the queue. A block time of zero is used as it is known that the
533 // queue holds a value.
534 ulValReceived = 0;
535 xQueuePeek( xQueue, &ulValReceived, 0 );
536
537 if( ulValReceived != 10 )
538 {
539 // Error unless the item was removed by a different task.
540 }
541
542 // The queue is still full. Use xQueueOverwrite() to overwrite the
543 // value held in the queue with 100.
544 ulVarToSend = 100;
545 xQueueOverwrite( xQueue, &ulVarToSend );
546
547 // This time read from the queue, leaving the queue empty once more.
548 // A block time of 0 is used again.
549 xQueueReceive( xQueue, &ulValReceived, 0 );
550
551 // The value read should be the last value written, even though the
552 // queue was already full when the value was written.
553 if( ulValReceived != 100 )
554 {
555 // Error!
556 }
557
558 // ...
559}
560 </pre>
561 * \defgroup xQueueOverwrite xQueueOverwrite
562 * \ingroup QueueManagement
563 */
564#define xQueueOverwrite(xQueue, pvItemToQueue) xQueueGenericSend((xQueue), (pvItemToQueue), 0, queueOVERWRITE)
565
566/**
567 * queue. h
568 * <pre>
569 BaseType_t xQueueGenericSend(
570 QueueHandle_t xQueue,
571 const void * pvItemToQueue,
572 TickType_t xTicksToWait
573 BaseType_t xCopyPosition
574 );
575 * </pre>
576 *
577 * It is preferred that the macros xQueueSend(), xQueueSendToFront() and
578 * xQueueSendToBack() are used in place of calling this function directly.
579 *
580 * Post an item on a queue. The item is queued by copy, not by reference.
581 * This function must not be called from an interrupt service routine.
582 * See xQueueSendFromISR () for an alternative which may be used in an ISR.
583 *
584 * @param xQueue The handle to the queue on which the item is to be posted.
585 *
586 * @param pvItemToQueue A pointer to the item that is to be placed on the
587 * queue. The size of the items the queue will hold was defined when the
588 * queue was created, so this many bytes will be copied from pvItemToQueue
589 * into the queue storage area.
590 *
591 * @param xTicksToWait The maximum amount of time the task should block
592 * waiting for space to become available on the queue, should it already
593 * be full. The call will return immediately if this is set to 0 and the
594 * queue is full. The time is defined in tick periods so the constant
595 * portTICK_PERIOD_MS should be used to convert to real time if this is required.
596 *
597 * @param xCopyPosition Can take the value queueSEND_TO_BACK to place the
598 * item at the back of the queue, or queueSEND_TO_FRONT to place the item
599 * at the front of the queue (for high priority messages).
600 *
601 * @return pdTRUE if the item was successfully posted, otherwise errQUEUE_FULL.
602 *
603 * Example usage:
604 <pre>
605 struct AMessage
606 {
607 char ucMessageID;
608 char ucData[ 20 ];
609 } xMessage;
610
611 uint32_t ulVar = 10UL;
612
613 void vATask( void *pvParameters )
614 {
615 QueueHandle_t xQueue1, xQueue2;
616 struct AMessage *pxMessage;
617
618 // Create a queue capable of containing 10 uint32_t values.
619 xQueue1 = xQueueCreate( 10, sizeof( uint32_t ) );
620
621 // Create a queue capable of containing 10 pointers to AMessage structures.
622 // These should be passed by pointer as they contain a lot of data.
623 xQueue2 = xQueueCreate( 10, sizeof( struct AMessage * ) );
624
625 // ...
626
627 if( xQueue1 != 0 )
628 {
629 // Send an uint32_t. Wait for 10 ticks for space to become
630 // available if necessary.
631 if( xQueueGenericSend( xQueue1, ( void * ) &ulVar, ( TickType_t ) 10, queueSEND_TO_BACK ) != pdPASS )
632 {
633 // Failed to post the message, even after 10 ticks.
634 }
635 }
636
637 if( xQueue2 != 0 )
638 {
639 // Send a pointer to a struct AMessage object. Don't block if the
640 // queue is already full.
641 pxMessage = & xMessage;
642 xQueueGenericSend( xQueue2, ( void * ) &pxMessage, ( TickType_t ) 0, queueSEND_TO_BACK );
643 }
644
645 // ... Rest of task code.
646 }
647 </pre>
648 * \defgroup xQueueSend xQueueSend
649 * \ingroup QueueManagement
650 */
651BaseType_t xQueueGenericSend(QueueHandle_t xQueue, const void *const pvItemToQueue, TickType_t xTicksToWait,
652 const BaseType_t xCopyPosition) PRIVILEGED_FUNCTION;
653
654/**
655 * queue. h
656 * <pre>
657 BaseType_t xQueuePeek(
658 QueueHandle_t xQueue,
659 void * const pvBuffer,
660 TickType_t xTicksToWait
661 );</pre>
662 *
663 * Receive an item from a queue without removing the item from the queue.
664 * The item is received by copy so a buffer of adequate size must be
665 * provided. The number of bytes copied into the buffer was defined when
666 * the queue was created.
667 *
668 * Successfully received items remain on the queue so will be returned again
669 * by the next call, or a call to xQueueReceive().
670 *
671 * This macro must not be used in an interrupt service routine. See
672 * xQueuePeekFromISR() for an alternative that can be called from an interrupt
673 * service routine.
674 *
675 * @param xQueue The handle to the queue from which the item is to be
676 * received.
677 *
678 * @param pvBuffer Pointer to the buffer into which the received item will
679 * be copied.
680 *
681 * @param xTicksToWait The maximum amount of time the task should block
682 * waiting for an item to receive should the queue be empty at the time
683 * of the call. The time is defined in tick periods so the constant
684 * portTICK_PERIOD_MS should be used to convert to real time if this is required.
685 * xQueuePeek() will return immediately if xTicksToWait is 0 and the queue
686 * is empty.
687 *
688 * @return pdTRUE if an item was successfully received from the queue,
689 * otherwise pdFALSE.
690 *
691 * Example usage:
692 <pre>
693 struct AMessage
694 {
695 char ucMessageID;
696 char ucData[ 20 ];
697 } xMessage;
698
699 QueueHandle_t xQueue;
700
701 // Task to create a queue and post a value.
702 void vATask( void *pvParameters )
703 {
704 struct AMessage *pxMessage;
705
706 // Create a queue capable of containing 10 pointers to AMessage structures.
707 // These should be passed by pointer as they contain a lot of data.
708 xQueue = xQueueCreate( 10, sizeof( struct AMessage * ) );
709 if( xQueue == 0 )
710 {
711 // Failed to create the queue.
712 }
713
714 // ...
715
716 // Send a pointer to a struct AMessage object. Don't block if the
717 // queue is already full.
718 pxMessage = & xMessage;
719 xQueueSend( xQueue, ( void * ) &pxMessage, ( TickType_t ) 0 );
720
721 // ... Rest of task code.
722 }
723
724 // Task to peek the data from the queue.
725 void vADifferentTask( void *pvParameters )
726 {
727 struct AMessage *pxRxedMessage;
728
729 if( xQueue != 0 )
730 {
731 // Peek a message on the created queue. Block for 10 ticks if a
732 // message is not immediately available.
733 if( xQueuePeek( xQueue, &( pxRxedMessage ), ( TickType_t ) 10 ) )
734 {
735 // pcRxedMessage now points to the struct AMessage variable posted
736 // by vATask, but the item still remains on the queue.
737 }
738 }
739
740 // ... Rest of task code.
741 }
742 </pre>
743 * \defgroup xQueuePeek xQueuePeek
744 * \ingroup QueueManagement
745 */
746BaseType_t xQueuePeek(QueueHandle_t xQueue, void *const pvBuffer, TickType_t xTicksToWait) PRIVILEGED_FUNCTION;
747
748/**
749 * queue. h
750 * <pre>
751 BaseType_t xQueuePeekFromISR(
752 QueueHandle_t xQueue,
753 void *pvBuffer,
754 );</pre>
755 *
756 * A version of xQueuePeek() that can be called from an interrupt service
757 * routine (ISR).
758 *
759 * Receive an item from a queue without removing the item from the queue.
760 * The item is received by copy so a buffer of adequate size must be
761 * provided. The number of bytes copied into the buffer was defined when
762 * the queue was created.
763 *
764 * Successfully received items remain on the queue so will be returned again
765 * by the next call, or a call to xQueueReceive().
766 *
767 * @param xQueue The handle to the queue from which the item is to be
768 * received.
769 *
770 * @param pvBuffer Pointer to the buffer into which the received item will
771 * be copied.
772 *
773 * @return pdTRUE if an item was successfully received from the queue,
774 * otherwise pdFALSE.
775 *
776 * \defgroup xQueuePeekFromISR xQueuePeekFromISR
777 * \ingroup QueueManagement
778 */
779BaseType_t xQueuePeekFromISR(QueueHandle_t xQueue, void *const pvBuffer) PRIVILEGED_FUNCTION;
780
781/**
782 * queue. h
783 * <pre>
784 BaseType_t xQueueReceive(
785 QueueHandle_t xQueue,
786 void *pvBuffer,
787 TickType_t xTicksToWait
788 );</pre>
789 *
790 * Receive an item from a queue. The item is received by copy so a buffer of
791 * adequate size must be provided. The number of bytes copied into the buffer
792 * was defined when the queue was created.
793 *
794 * Successfully received items are removed from the queue.
795 *
796 * This function must not be used in an interrupt service routine. See
797 * xQueueReceiveFromISR for an alternative that can.
798 *
799 * @param xQueue The handle to the queue from which the item is to be
800 * received.
801 *
802 * @param pvBuffer Pointer to the buffer into which the received item will
803 * be copied.
804 *
805 * @param xTicksToWait The maximum amount of time the task should block
806 * waiting for an item to receive should the queue be empty at the time
807 * of the call. xQueueReceive() will return immediately if xTicksToWait
808 * is zero and the queue is empty. The time is defined in tick periods so the
809 * constant portTICK_PERIOD_MS should be used to convert to real time if this is
810 * required.
811 *
812 * @return pdTRUE if an item was successfully received from the queue,
813 * otherwise pdFALSE.
814 *
815 * Example usage:
816 <pre>
817 struct AMessage
818 {
819 char ucMessageID;
820 char ucData[ 20 ];
821 } xMessage;
822
823 QueueHandle_t xQueue;
824
825 // Task to create a queue and post a value.
826 void vATask( void *pvParameters )
827 {
828 struct AMessage *pxMessage;
829
830 // Create a queue capable of containing 10 pointers to AMessage structures.
831 // These should be passed by pointer as they contain a lot of data.
832 xQueue = xQueueCreate( 10, sizeof( struct AMessage * ) );
833 if( xQueue == 0 )
834 {
835 // Failed to create the queue.
836 }
837
838 // ...
839
840 // Send a pointer to a struct AMessage object. Don't block if the
841 // queue is already full.
842 pxMessage = & xMessage;
843 xQueueSend( xQueue, ( void * ) &pxMessage, ( TickType_t ) 0 );
844
845 // ... Rest of task code.
846 }
847
848 // Task to receive from the queue.
849 void vADifferentTask( void *pvParameters )
850 {
851 struct AMessage *pxRxedMessage;
852
853 if( xQueue != 0 )
854 {
855 // Receive a message on the created queue. Block for 10 ticks if a
856 // message is not immediately available.
857 if( xQueueReceive( xQueue, &( pxRxedMessage ), ( TickType_t ) 10 ) )
858 {
859 // pcRxedMessage now points to the struct AMessage variable posted
860 // by vATask.
861 }
862 }
863
864 // ... Rest of task code.
865 }
866 </pre>
867 * \defgroup xQueueReceive xQueueReceive
868 * \ingroup QueueManagement
869 */
870BaseType_t xQueueReceive(QueueHandle_t xQueue, void *const pvBuffer, TickType_t xTicksToWait) PRIVILEGED_FUNCTION;
871
872/**
873 * queue. h
874 * <pre>UBaseType_t uxQueueMessagesWaiting( const QueueHandle_t xQueue );</pre>
875 *
876 * Return the number of messages stored in a queue.
877 *
878 * @param xQueue A handle to the queue being queried.
879 *
880 * @return The number of messages available in the queue.
881 *
882 * \defgroup uxQueueMessagesWaiting uxQueueMessagesWaiting
883 * \ingroup QueueManagement
884 */
885UBaseType_t uxQueueMessagesWaiting(const QueueHandle_t xQueue) PRIVILEGED_FUNCTION;
886
887/**
888 * queue. h
889 * <pre>UBaseType_t uxQueueSpacesAvailable( const QueueHandle_t xQueue );</pre>
890 *
891 * Return the number of free spaces available in a queue. This is equal to the
892 * number of items that can be sent to the queue before the queue becomes full
893 * if no items are removed.
894 *
895 * @param xQueue A handle to the queue being queried.
896 *
897 * @return The number of spaces available in the queue.
898 *
899 * \defgroup uxQueueMessagesWaiting uxQueueMessagesWaiting
900 * \ingroup QueueManagement
901 */
902UBaseType_t uxQueueSpacesAvailable(const QueueHandle_t xQueue) PRIVILEGED_FUNCTION;
903
904/**
905 * queue. h
906 * <pre>void vQueueDelete( QueueHandle_t xQueue );</pre>
907 *
908 * Delete a queue - freeing all the memory allocated for storing of items
909 * placed on the queue.
910 *
911 * @param xQueue A handle to the queue to be deleted.
912 *
913 * \defgroup vQueueDelete vQueueDelete
914 * \ingroup QueueManagement
915 */
916void vQueueDelete(QueueHandle_t xQueue) PRIVILEGED_FUNCTION;
917
918/**
919 * queue. h
920 * <pre>
921 BaseType_t xQueueSendToFrontFromISR(
922 QueueHandle_t xQueue,
923 const void *pvItemToQueue,
924 BaseType_t *pxHigherPriorityTaskWoken
925 );
926 </pre>
927 *
928 * This is a macro that calls xQueueGenericSendFromISR().
929 *
930 * Post an item to the front of a queue. It is safe to use this macro from
931 * within an interrupt service routine.
932 *
933 * Items are queued by copy not reference so it is preferable to only
934 * queue small items, especially when called from an ISR. In most cases
935 * it would be preferable to store a pointer to the item being queued.
936 *
937 * @param xQueue The handle to the queue on which the item is to be posted.
938 *
939 * @param pvItemToQueue A pointer to the item that is to be placed on the
940 * queue. The size of the items the queue will hold was defined when the
941 * queue was created, so this many bytes will be copied from pvItemToQueue
942 * into the queue storage area.
943 *
944 * @param pxHigherPriorityTaskWoken xQueueSendToFrontFromISR() will set
945 * *pxHigherPriorityTaskWoken to pdTRUE if sending to the queue caused a task
946 * to unblock, and the unblocked task has a priority higher than the currently
947 * running task. If xQueueSendToFromFromISR() sets this value to pdTRUE then
948 * a context switch should be requested before the interrupt is exited.
949 *
950 * @return pdTRUE if the data was successfully sent to the queue, otherwise
951 * errQUEUE_FULL.
952 *
953 * Example usage for buffered IO (where the ISR can obtain more than one value
954 * per call):
955 <pre>
956 void vBufferISR( void )
957 {
958 char cIn;
959 BaseType_t xHigherPrioritTaskWoken;
960
961 // We have not woken a task at the start of the ISR.
962 xHigherPriorityTaskWoken = pdFALSE;
963
964 // Loop until the buffer is empty.
965 do
966 {
967 // Obtain a byte from the buffer.
968 cIn = portINPUT_BYTE( RX_REGISTER_ADDRESS );
969
970 // Post the byte.
971 xQueueSendToFrontFromISR( xRxQueue, &cIn, &xHigherPriorityTaskWoken );
972
973 } while( portINPUT_BYTE( BUFFER_COUNT ) );
974
975 // Now the buffer is empty we can switch context if necessary.
976 if( xHigherPriorityTaskWoken )
977 {
978 taskYIELD ();
979 }
980 }
981 </pre>
982 *
983 * \defgroup xQueueSendFromISR xQueueSendFromISR
984 * \ingroup QueueManagement
985 */
986#define xQueueSendToFrontFromISR(xQueue, pvItemToQueue, pxHigherPriorityTaskWoken) \
987 xQueueGenericSendFromISR((xQueue), (pvItemToQueue), (pxHigherPriorityTaskWoken), queueSEND_TO_FRONT)
988
989/**
990 * queue. h
991 * <pre>
992 BaseType_t xQueueSendToBackFromISR(
993 QueueHandle_t xQueue,
994 const void *pvItemToQueue,
995 BaseType_t *pxHigherPriorityTaskWoken
996 );
997 </pre>
998 *
999 * This is a macro that calls xQueueGenericSendFromISR().
1000 *
1001 * Post an item to the back of a queue. It is safe to use this macro from
1002 * within an interrupt service routine.
1003 *
1004 * Items are queued by copy not reference so it is preferable to only
1005 * queue small items, especially when called from an ISR. In most cases
1006 * it would be preferable to store a pointer to the item being queued.
1007 *
1008 * @param xQueue The handle to the queue on which the item is to be posted.
1009 *
1010 * @param pvItemToQueue A pointer to the item that is to be placed on the
1011 * queue. The size of the items the queue will hold was defined when the
1012 * queue was created, so this many bytes will be copied from pvItemToQueue
1013 * into the queue storage area.
1014 *
1015 * @param pxHigherPriorityTaskWoken xQueueSendToBackFromISR() will set
1016 * *pxHigherPriorityTaskWoken to pdTRUE if sending to the queue caused a task
1017 * to unblock, and the unblocked task has a priority higher than the currently
1018 * running task. If xQueueSendToBackFromISR() sets this value to pdTRUE then
1019 * a context switch should be requested before the interrupt is exited.
1020 *
1021 * @return pdTRUE if the data was successfully sent to the queue, otherwise
1022 * errQUEUE_FULL.
1023 *
1024 * Example usage for buffered IO (where the ISR can obtain more than one value
1025 * per call):
1026 <pre>
1027 void vBufferISR( void )
1028 {
1029 char cIn;
1030 BaseType_t xHigherPriorityTaskWoken;
1031
1032 // We have not woken a task at the start of the ISR.
1033 xHigherPriorityTaskWoken = pdFALSE;
1034
1035 // Loop until the buffer is empty.
1036 do
1037 {
1038 // Obtain a byte from the buffer.
1039 cIn = portINPUT_BYTE( RX_REGISTER_ADDRESS );
1040
1041 // Post the byte.
1042 xQueueSendToBackFromISR( xRxQueue, &cIn, &xHigherPriorityTaskWoken );
1043
1044 } while( portINPUT_BYTE( BUFFER_COUNT ) );
1045
1046 // Now the buffer is empty we can switch context if necessary.
1047 if( xHigherPriorityTaskWoken )
1048 {
1049 taskYIELD ();
1050 }
1051 }
1052 </pre>
1053 *
1054 * \defgroup xQueueSendFromISR xQueueSendFromISR
1055 * \ingroup QueueManagement
1056 */
1057#define xQueueSendToBackFromISR(xQueue, pvItemToQueue, pxHigherPriorityTaskWoken) \
1058 xQueueGenericSendFromISR((xQueue), (pvItemToQueue), (pxHigherPriorityTaskWoken), queueSEND_TO_BACK)
1059
1060/**
1061 * queue. h
1062 * <pre>
1063 BaseType_t xQueueOverwriteFromISR(
1064 QueueHandle_t xQueue,
1065 const void * pvItemToQueue,
1066 BaseType_t *pxHigherPriorityTaskWoken
1067 );
1068 * </pre>
1069 *
1070 * A version of xQueueOverwrite() that can be used in an interrupt service
1071 * routine (ISR).
1072 *
1073 * Only for use with queues that can hold a single item - so the queue is either
1074 * empty or full.
1075 *
1076 * Post an item on a queue. If the queue is already full then overwrite the
1077 * value held in the queue. The item is queued by copy, not by reference.
1078 *
1079 * @param xQueue The handle to the queue on which the item is to be posted.
1080 *
1081 * @param pvItemToQueue A pointer to the item that is to be placed on the
1082 * queue. The size of the items the queue will hold was defined when the
1083 * queue was created, so this many bytes will be copied from pvItemToQueue
1084 * into the queue storage area.
1085 *
1086 * @param pxHigherPriorityTaskWoken xQueueOverwriteFromISR() will set
1087 * *pxHigherPriorityTaskWoken to pdTRUE if sending to the queue caused a task
1088 * to unblock, and the unblocked task has a priority higher than the currently
1089 * running task. If xQueueOverwriteFromISR() sets this value to pdTRUE then
1090 * a context switch should be requested before the interrupt is exited.
1091 *
1092 * @return xQueueOverwriteFromISR() is a macro that calls
1093 * xQueueGenericSendFromISR(), and therefore has the same return values as
1094 * xQueueSendToFrontFromISR(). However, pdPASS is the only value that can be
1095 * returned because xQueueOverwriteFromISR() will write to the queue even when
1096 * the queue is already full.
1097 *
1098 * Example usage:
1099 <pre>
1100
1101 QueueHandle_t xQueue;
1102
1103 void vFunction( void *pvParameters )
1104 {
1105 // Create a queue to hold one uint32_t value. It is strongly
1106 // recommended *not* to use xQueueOverwriteFromISR() on queues that can
1107 // contain more than one value, and doing so will trigger an assertion
1108 // if configASSERT() is defined.
1109 xQueue = xQueueCreate( 1, sizeof( uint32_t ) );
1110}
1111
1112void vAnInterruptHandler( void )
1113{
1114// xHigherPriorityTaskWoken must be set to pdFALSE before it is used.
1115BaseType_t xHigherPriorityTaskWoken = pdFALSE;
1116uint32_t ulVarToSend, ulValReceived;
1117
1118 // Write the value 10 to the queue using xQueueOverwriteFromISR().
1119 ulVarToSend = 10;
1120 xQueueOverwriteFromISR( xQueue, &ulVarToSend, &xHigherPriorityTaskWoken );
1121
1122 // The queue is full, but calling xQueueOverwriteFromISR() again will still
1123 // pass because the value held in the queue will be overwritten with the
1124 // new value.
1125 ulVarToSend = 100;
1126 xQueueOverwriteFromISR( xQueue, &ulVarToSend, &xHigherPriorityTaskWoken );
1127
1128 // Reading from the queue will now return 100.
1129
1130 // ...
1131
1132 if( xHigherPrioritytaskWoken == pdTRUE )
1133 {
1134 // Writing to the queue caused a task to unblock and the unblocked task
1135 // has a priority higher than or equal to the priority of the currently
1136 // executing task (the task this interrupt interrupted). Perform a context
1137 // switch so this interrupt returns directly to the unblocked task.
1138 portYIELD_FROM_ISR(); // or portEND_SWITCHING_ISR() depending on the port.
1139 }
1140}
1141 </pre>
1142 * \defgroup xQueueOverwriteFromISR xQueueOverwriteFromISR
1143 * \ingroup QueueManagement
1144 */
1145#define xQueueOverwriteFromISR(xQueue, pvItemToQueue, pxHigherPriorityTaskWoken) \
1146 xQueueGenericSendFromISR((xQueue), (pvItemToQueue), (pxHigherPriorityTaskWoken), queueOVERWRITE)
1147
1148/**
1149 * queue. h
1150 * <pre>
1151 BaseType_t xQueueSendFromISR(
1152 QueueHandle_t xQueue,
1153 const void *pvItemToQueue,
1154 BaseType_t *pxHigherPriorityTaskWoken
1155 );
1156 </pre>
1157 *
1158 * This is a macro that calls xQueueGenericSendFromISR(). It is included
1159 * for backward compatibility with versions of FreeRTOS.org that did not
1160 * include the xQueueSendToBackFromISR() and xQueueSendToFrontFromISR()
1161 * macros.
1162 *
1163 * Post an item to the back of a queue. It is safe to use this function from
1164 * within an interrupt service routine.
1165 *
1166 * Items are queued by copy not reference so it is preferable to only
1167 * queue small items, especially when called from an ISR. In most cases
1168 * it would be preferable to store a pointer to the item being queued.
1169 *
1170 * @param xQueue The handle to the queue on which the item is to be posted.
1171 *
1172 * @param pvItemToQueue A pointer to the item that is to be placed on the
1173 * queue. The size of the items the queue will hold was defined when the
1174 * queue was created, so this many bytes will be copied from pvItemToQueue
1175 * into the queue storage area.
1176 *
1177 * @param pxHigherPriorityTaskWoken xQueueSendFromISR() will set
1178 * *pxHigherPriorityTaskWoken to pdTRUE if sending to the queue caused a task
1179 * to unblock, and the unblocked task has a priority higher than the currently
1180 * running task. If xQueueSendFromISR() sets this value to pdTRUE then
1181 * a context switch should be requested before the interrupt is exited.
1182 *
1183 * @return pdTRUE if the data was successfully sent to the queue, otherwise
1184 * errQUEUE_FULL.
1185 *
1186 * Example usage for buffered IO (where the ISR can obtain more than one value
1187 * per call):
1188 <pre>
1189 void vBufferISR( void )
1190 {
1191 char cIn;
1192 BaseType_t xHigherPriorityTaskWoken;
1193
1194 // We have not woken a task at the start of the ISR.
1195 xHigherPriorityTaskWoken = pdFALSE;
1196
1197 // Loop until the buffer is empty.
1198 do
1199 {
1200 // Obtain a byte from the buffer.
1201 cIn = portINPUT_BYTE( RX_REGISTER_ADDRESS );
1202
1203 // Post the byte.
1204 xQueueSendFromISR( xRxQueue, &cIn, &xHigherPriorityTaskWoken );
1205
1206 } while( portINPUT_BYTE( BUFFER_COUNT ) );
1207
1208 // Now the buffer is empty we can switch context if necessary.
1209 if( xHigherPriorityTaskWoken )
1210 {
1211 // Actual macro used here is port specific.
1212 portYIELD_FROM_ISR ();
1213 }
1214 }
1215 </pre>
1216 *
1217 * \defgroup xQueueSendFromISR xQueueSendFromISR
1218 * \ingroup QueueManagement
1219 */
1220#define xQueueSendFromISR(xQueue, pvItemToQueue, pxHigherPriorityTaskWoken) \
1221 xQueueGenericSendFromISR((xQueue), (pvItemToQueue), (pxHigherPriorityTaskWoken), queueSEND_TO_BACK)
1222
1223/**
1224 * queue. h
1225 * <pre>
1226 BaseType_t xQueueGenericSendFromISR(
1227 QueueHandle_t xQueue,
1228 const void *pvItemToQueue,
1229 BaseType_t *pxHigherPriorityTaskWoken,
1230 BaseType_t xCopyPosition
1231 );
1232 </pre>
1233 *
1234 * It is preferred that the macros xQueueSendFromISR(),
1235 * xQueueSendToFrontFromISR() and xQueueSendToBackFromISR() be used in place
1236 * of calling this function directly. xQueueGiveFromISR() is an
1237 * equivalent for use by semaphores that don't actually copy any data.
1238 *
1239 * Post an item on a queue. It is safe to use this function from within an
1240 * interrupt service routine.
1241 *
1242 * Items are queued by copy not reference so it is preferable to only
1243 * queue small items, especially when called from an ISR. In most cases
1244 * it would be preferable to store a pointer to the item being queued.
1245 *
1246 * @param xQueue The handle to the queue on which the item is to be posted.
1247 *
1248 * @param pvItemToQueue A pointer to the item that is to be placed on the
1249 * queue. The size of the items the queue will hold was defined when the
1250 * queue was created, so this many bytes will be copied from pvItemToQueue
1251 * into the queue storage area.
1252 *
1253 * @param pxHigherPriorityTaskWoken xQueueGenericSendFromISR() will set
1254 * *pxHigherPriorityTaskWoken to pdTRUE if sending to the queue caused a task
1255 * to unblock, and the unblocked task has a priority higher than the currently
1256 * running task. If xQueueGenericSendFromISR() sets this value to pdTRUE then
1257 * a context switch should be requested before the interrupt is exited.
1258 *
1259 * @param xCopyPosition Can take the value queueSEND_TO_BACK to place the
1260 * item at the back of the queue, or queueSEND_TO_FRONT to place the item
1261 * at the front of the queue (for high priority messages).
1262 *
1263 * @return pdTRUE if the data was successfully sent to the queue, otherwise
1264 * errQUEUE_FULL.
1265 *
1266 * Example usage for buffered IO (where the ISR can obtain more than one value
1267 * per call):
1268 <pre>
1269 void vBufferISR( void )
1270 {
1271 char cIn;
1272 BaseType_t xHigherPriorityTaskWokenByPost;
1273
1274 // We have not woken a task at the start of the ISR.
1275 xHigherPriorityTaskWokenByPost = pdFALSE;
1276
1277 // Loop until the buffer is empty.
1278 do
1279 {
1280 // Obtain a byte from the buffer.
1281 cIn = portINPUT_BYTE( RX_REGISTER_ADDRESS );
1282
1283 // Post each byte.
1284 xQueueGenericSendFromISR( xRxQueue, &cIn, &xHigherPriorityTaskWokenByPost, queueSEND_TO_BACK );
1285
1286 } while( portINPUT_BYTE( BUFFER_COUNT ) );
1287
1288 // Now the buffer is empty we can switch context if necessary. Note that the
1289 // name of the yield function required is port specific.
1290 if( xHigherPriorityTaskWokenByPost )
1291 {
1292 taskYIELD_YIELD_FROM_ISR();
1293 }
1294 }
1295 </pre>
1296 *
1297 * \defgroup xQueueSendFromISR xQueueSendFromISR
1298 * \ingroup QueueManagement
1299 */
1300BaseType_t xQueueGenericSendFromISR(QueueHandle_t xQueue, const void *const pvItemToQueue,
1301 BaseType_t *const pxHigherPriorityTaskWoken,
1302 const BaseType_t xCopyPosition) PRIVILEGED_FUNCTION;
1303BaseType_t xQueueGiveFromISR(QueueHandle_t xQueue, BaseType_t *const pxHigherPriorityTaskWoken) PRIVILEGED_FUNCTION;
1304
1305/**
1306 * queue. h
1307 * <pre>
1308 BaseType_t xQueueReceiveFromISR(
1309 QueueHandle_t xQueue,
1310 void *pvBuffer,
1311 BaseType_t *pxTaskWoken
1312 );
1313 * </pre>
1314 *
1315 * Receive an item from a queue. It is safe to use this function from within an
1316 * interrupt service routine.
1317 *
1318 * @param xQueue The handle to the queue from which the item is to be
1319 * received.
1320 *
1321 * @param pvBuffer Pointer to the buffer into which the received item will
1322 * be copied.
1323 *
1324 * @param pxTaskWoken A task may be blocked waiting for space to become
1325 * available on the queue. If xQueueReceiveFromISR causes such a task to
1326 * unblock *pxTaskWoken will get set to pdTRUE, otherwise *pxTaskWoken will
1327 * remain unchanged.
1328 *
1329 * @return pdTRUE if an item was successfully received from the queue,
1330 * otherwise pdFALSE.
1331 *
1332 * Example usage:
1333 <pre>
1334
1335 QueueHandle_t xQueue;
1336
1337 // Function to create a queue and post some values.
1338 void vAFunction( void *pvParameters )
1339 {
1340 char cValueToPost;
1341 const TickType_t xTicksToWait = ( TickType_t )0xff;
1342
1343 // Create a queue capable of containing 10 characters.
1344 xQueue = xQueueCreate( 10, sizeof( char ) );
1345 if( xQueue == 0 )
1346 {
1347 // Failed to create the queue.
1348 }
1349
1350 // ...
1351
1352 // Post some characters that will be used within an ISR. If the queue
1353 // is full then this task will block for xTicksToWait ticks.
1354 cValueToPost = 'a';
1355 xQueueSend( xQueue, ( void * ) &cValueToPost, xTicksToWait );
1356 cValueToPost = 'b';
1357 xQueueSend( xQueue, ( void * ) &cValueToPost, xTicksToWait );
1358
1359 // ... keep posting characters ... this task may block when the queue
1360 // becomes full.
1361
1362 cValueToPost = 'c';
1363 xQueueSend( xQueue, ( void * ) &cValueToPost, xTicksToWait );
1364 }
1365
1366 // ISR that outputs all the characters received on the queue.
1367 void vISR_Routine( void )
1368 {
1369 BaseType_t xTaskWokenByReceive = pdFALSE;
1370 char cRxedChar;
1371
1372 while( xQueueReceiveFromISR( xQueue, ( void * ) &cRxedChar, &xTaskWokenByReceive) )
1373 {
1374 // A character was received. Output the character now.
1375 vOutputCharacter( cRxedChar );
1376
1377 // If removing the character from the queue woke the task that was
1378 // posting onto the queue cTaskWokenByReceive will have been set to
1379 // pdTRUE. No matter how many times this loop iterates only one
1380 // task will be woken.
1381 }
1382
1383 if( cTaskWokenByPost != ( char ) pdFALSE;
1384 {
1385 taskYIELD ();
1386 }
1387 }
1388 </pre>
1389 * \defgroup xQueueReceiveFromISR xQueueReceiveFromISR
1390 * \ingroup QueueManagement
1391 */
1392BaseType_t xQueueReceiveFromISR(QueueHandle_t xQueue, void *const pvBuffer,
1393 BaseType_t *const pxHigherPriorityTaskWoken) PRIVILEGED_FUNCTION;
1394
1395/*
1396 * Utilities to query queues that are safe to use from an ISR. These utilities
1397 * should be used only from witin an ISR, or within a critical section.
1398 */
1399BaseType_t xQueueIsQueueEmptyFromISR(const QueueHandle_t xQueue) PRIVILEGED_FUNCTION;
1400BaseType_t xQueueIsQueueFullFromISR(const QueueHandle_t xQueue) PRIVILEGED_FUNCTION;
1401UBaseType_t uxQueueMessagesWaitingFromISR(const QueueHandle_t xQueue) PRIVILEGED_FUNCTION;
1402
1403/*
1404 * The functions defined above are for passing data to and from tasks. The
1405 * functions below are the equivalents for passing data to and from
1406 * co-routines.
1407 *
1408 * These functions are called from the co-routine macro implementation and
1409 * should not be called directly from application code. Instead use the macro
1410 * wrappers defined within croutine.h.
1411 */
1412BaseType_t xQueueCRSendFromISR(QueueHandle_t xQueue, const void *pvItemToQueue, BaseType_t xCoRoutinePreviouslyWoken);
1413BaseType_t xQueueCRReceiveFromISR(QueueHandle_t xQueue, void *pvBuffer, BaseType_t *pxTaskWoken);
1414BaseType_t xQueueCRSend(QueueHandle_t xQueue, const void *pvItemToQueue, TickType_t xTicksToWait);
1415BaseType_t xQueueCRReceive(QueueHandle_t xQueue, void *pvBuffer, TickType_t xTicksToWait);
1416
1417/*
1418 * For internal use only. Use xSemaphoreCreateMutex(),
1419 * xSemaphoreCreateCounting() or xSemaphoreGetMutexHolder() instead of calling
1420 * these functions directly.
1421 */
1422QueueHandle_t xQueueCreateMutex(const uint8_t ucQueueType) PRIVILEGED_FUNCTION;
1423QueueHandle_t xQueueCreateMutexStatic(const uint8_t ucQueueType, StaticQueue_t *pxStaticQueue) PRIVILEGED_FUNCTION;
1424QueueHandle_t xQueueCreateCountingSemaphore(const UBaseType_t uxMaxCount,
1425 const UBaseType_t uxInitialCount) PRIVILEGED_FUNCTION;
1426QueueHandle_t xQueueCreateCountingSemaphoreStatic(const UBaseType_t uxMaxCount, const UBaseType_t uxInitialCount,
1427 StaticQueue_t *pxStaticQueue) PRIVILEGED_FUNCTION;
1428BaseType_t xQueueSemaphoreTake(QueueHandle_t xQueue, TickType_t xTicksToWait) PRIVILEGED_FUNCTION;
1429void * xQueueGetMutexHolder(QueueHandle_t xSemaphore) PRIVILEGED_FUNCTION;
1430void * xQueueGetMutexHolderFromISR(QueueHandle_t xSemaphore) PRIVILEGED_FUNCTION;
1431
1432/*
1433 * For internal use only. Use xSemaphoreTakeMutexRecursive() or
1434 * xSemaphoreGiveMutexRecursive() instead of calling these functions directly.
1435 */
1436BaseType_t xQueueTakeMutexRecursive(QueueHandle_t xMutex, TickType_t xTicksToWait) PRIVILEGED_FUNCTION;
1437BaseType_t xQueueGiveMutexRecursive(QueueHandle_t pxMutex) PRIVILEGED_FUNCTION;
1438
1439/*
1440 * Reset a queue back to its original empty state. The return value is now
1441 * obsolete and is always set to pdPASS.
1442 */
1443#define xQueueReset(xQueue) xQueueGenericReset(xQueue, pdFALSE)
1444
1445/*
1446 * The registry is provided as a means for kernel aware debuggers to
1447 * locate queues, semaphores and mutexes. Call vQueueAddToRegistry() add
1448 * a queue, semaphore or mutex handle to the registry if you want the handle
1449 * to be available to a kernel aware debugger. If you are not using a kernel
1450 * aware debugger then this function can be ignored.
1451 *
1452 * configQUEUE_REGISTRY_SIZE defines the maximum number of handles the
1453 * registry can hold. configQUEUE_REGISTRY_SIZE must be greater than 0
1454 * within FreeRTOSConfig.h for the registry to be available. Its value
1455 * does not effect the number of queues, semaphores and mutexes that can be
1456 * created - just the number that the registry can hold.
1457 *
1458 * @param xQueue The handle of the queue being added to the registry. This
1459 * is the handle returned by a call to xQueueCreate(). Semaphore and mutex
1460 * handles can also be passed in here.
1461 *
1462 * @param pcName The name to be associated with the handle. This is the
1463 * name that the kernel aware debugger will display. The queue registry only
1464 * stores a pointer to the string - so the string must be persistent (global or
1465 * preferably in ROM/Flash), not on the stack.
1466 */
1467#if (configQUEUE_REGISTRY_SIZE > 0)
1468void vQueueAddToRegistry(QueueHandle_t xQueue, const char *pcName)
1469 PRIVILEGED_FUNCTION; /*lint !e971 Unqualified char types are allowed for strings and single characters only. */
1470#endif
1471
1472/*
1473 * The registry is provided as a means for kernel aware debuggers to
1474 * locate queues, semaphores and mutexes. Call vQueueAddToRegistry() add
1475 * a queue, semaphore or mutex handle to the registry if you want the handle
1476 * to be available to a kernel aware debugger, and vQueueUnregisterQueue() to
1477 * remove the queue, semaphore or mutex from the register. If you are not using
1478 * a kernel aware debugger then this function can be ignored.
1479 *
1480 * @param xQueue The handle of the queue being removed from the registry.
1481 */
1482#if (configQUEUE_REGISTRY_SIZE > 0)
1483void vQueueUnregisterQueue(QueueHandle_t xQueue) PRIVILEGED_FUNCTION;
1484#endif
1485
1486/*
1487 * The queue registry is provided as a means for kernel aware debuggers to
1488 * locate queues, semaphores and mutexes. Call pcQueueGetName() to look
1489 * up and return the name of a queue in the queue registry from the queue's
1490 * handle.
1491 *
1492 * @param xQueue The handle of the queue the name of which will be returned.
1493 * @return If the queue is in the registry then a pointer to the name of the
1494 * queue is returned. If the queue is not in the registry then NULL is
1495 * returned.
1496 */
1497#if (configQUEUE_REGISTRY_SIZE > 0)
1498const char *pcQueueGetName(QueueHandle_t xQueue)
1499 PRIVILEGED_FUNCTION; /*lint !e971 Unqualified char types are allowed for strings and single characters only. */
1500#endif
1501
1502/*
1503 * Generic version of the function used to creaet a queue using dynamic memory
1504 * allocation. This is called by other functions and macros that create other
1505 * RTOS objects that use the queue structure as their base.
1506 */
1507#if (configSUPPORT_DYNAMIC_ALLOCATION == 1)
1508QueueHandle_t xQueueGenericCreate(const UBaseType_t uxQueueLength, const UBaseType_t uxItemSize,
1509 const uint8_t ucQueueType) PRIVILEGED_FUNCTION;
1510#endif
1511
1512/*
1513 * Generic version of the function used to creaet a queue using dynamic memory
1514 * allocation. This is called by other functions and macros that create other
1515 * RTOS objects that use the queue structure as their base.
1516 */
1517#if (configSUPPORT_STATIC_ALLOCATION == 1)
1518QueueHandle_t xQueueGenericCreateStatic(const UBaseType_t uxQueueLength, const UBaseType_t uxItemSize,
1519 uint8_t *pucQueueStorage, StaticQueue_t *pxStaticQueue,
1520 const uint8_t ucQueueType) PRIVILEGED_FUNCTION;
1521#endif
1522
1523/*
1524 * Queue sets provide a mechanism to allow a task to block (pend) on a read
1525 * operation from multiple queues or semaphores simultaneously.
1526 *
1527 * See FreeRTOS/Source/Demo/Common/Minimal/QueueSet.c for an example using this
1528 * function.
1529 *
1530 * A queue set must be explicitly created using a call to xQueueCreateSet()
1531 * before it can be used. Once created, standard FreeRTOS queues and semaphores
1532 * can be added to the set using calls to xQueueAddToSet().
1533 * xQueueSelectFromSet() is then used to determine which, if any, of the queues
1534 * or semaphores contained in the set is in a state where a queue read or
1535 * semaphore take operation would be successful.
1536 *
1537 * Note 1: See the documentation on http://wwwFreeRTOS.org/RTOS-queue-sets.html
1538 * for reasons why queue sets are very rarely needed in practice as there are
1539 * simpler methods of blocking on multiple objects.
1540 *
1541 * Note 2: Blocking on a queue set that contains a mutex will not cause the
1542 * mutex holder to inherit the priority of the blocked task.
1543 *
1544 * Note 3: An additional 4 bytes of RAM is required for each space in a every
1545 * queue added to a queue set. Therefore counting semaphores that have a high
1546 * maximum count value should not be added to a queue set.
1547 *
1548 * Note 4: A receive (in the case of a queue) or take (in the case of a
1549 * semaphore) operation must not be performed on a member of a queue set unless
1550 * a call to xQueueSelectFromSet() has first returned a handle to that set member.
1551 *
1552 * @param uxEventQueueLength Queue sets store events that occur on
1553 * the queues and semaphores contained in the set. uxEventQueueLength specifies
1554 * the maximum number of events that can be queued at once. To be absolutely
1555 * certain that events are not lost uxEventQueueLength should be set to the
1556 * total sum of the length of the queues added to the set, where binary
1557 * semaphores and mutexes have a length of 1, and counting semaphores have a
1558 * length set by their maximum count value. Examples:
1559 * + If a queue set is to hold a queue of length 5, another queue of length 12,
1560 * and a binary semaphore, then uxEventQueueLength should be set to
1561 * (5 + 12 + 1), or 18.
1562 * + If a queue set is to hold three binary semaphores then uxEventQueueLength
1563 * should be set to (1 + 1 + 1 ), or 3.
1564 * + If a queue set is to hold a counting semaphore that has a maximum count of
1565 * 5, and a counting semaphore that has a maximum count of 3, then
1566 * uxEventQueueLength should be set to (5 + 3), or 8.
1567 *
1568 * @return If the queue set is created successfully then a handle to the created
1569 * queue set is returned. Otherwise NULL is returned.
1570 */
1571QueueSetHandle_t xQueueCreateSet(const UBaseType_t uxEventQueueLength) PRIVILEGED_FUNCTION;
1572
1573/*
1574 * Adds a queue or semaphore to a queue set that was previously created by a
1575 * call to xQueueCreateSet().
1576 *
1577 * See FreeRTOS/Source/Demo/Common/Minimal/QueueSet.c for an example using this
1578 * function.
1579 *
1580 * Note 1: A receive (in the case of a queue) or take (in the case of a
1581 * semaphore) operation must not be performed on a member of a queue set unless
1582 * a call to xQueueSelectFromSet() has first returned a handle to that set member.
1583 *
1584 * @param xQueueOrSemaphore The handle of the queue or semaphore being added to
1585 * the queue set (cast to an QueueSetMemberHandle_t type).
1586 *
1587 * @param xQueueSet The handle of the queue set to which the queue or semaphore
1588 * is being added.
1589 *
1590 * @return If the queue or semaphore was successfully added to the queue set
1591 * then pdPASS is returned. If the queue could not be successfully added to the
1592 * queue set because it is already a member of a different queue set then pdFAIL
1593 * is returned.
1594 */
1595BaseType_t xQueueAddToSet(QueueSetMemberHandle_t xQueueOrSemaphore, QueueSetHandle_t xQueueSet) PRIVILEGED_FUNCTION;
1596
1597/*
1598 * Removes a queue or semaphore from a queue set. A queue or semaphore can only
1599 * be removed from a set if the queue or semaphore is empty.
1600 *
1601 * See FreeRTOS/Source/Demo/Common/Minimal/QueueSet.c for an example using this
1602 * function.
1603 *
1604 * @param xQueueOrSemaphore The handle of the queue or semaphore being removed
1605 * from the queue set (cast to an QueueSetMemberHandle_t type).
1606 *
1607 * @param xQueueSet The handle of the queue set in which the queue or semaphore
1608 * is included.
1609 *
1610 * @return If the queue or semaphore was successfully removed from the queue set
1611 * then pdPASS is returned. If the queue was not in the queue set, or the
1612 * queue (or semaphore) was not empty, then pdFAIL is returned.
1613 */
1614BaseType_t xQueueRemoveFromSet(QueueSetMemberHandle_t xQueueOrSemaphore,
1615 QueueSetHandle_t xQueueSet) PRIVILEGED_FUNCTION;
1616
1617/*
1618 * xQueueSelectFromSet() selects from the members of a queue set a queue or
1619 * semaphore that either contains data (in the case of a queue) or is available
1620 * to take (in the case of a semaphore). xQueueSelectFromSet() effectively
1621 * allows a task to block (pend) on a read operation on all the queues and
1622 * semaphores in a queue set simultaneously.
1623 *
1624 * See FreeRTOS/Source/Demo/Common/Minimal/QueueSet.c for an example using this
1625 * function.
1626 *
1627 * Note 1: See the documentation on http://wwwFreeRTOS.org/RTOS-queue-sets.html
1628 * for reasons why queue sets are very rarely needed in practice as there are
1629 * simpler methods of blocking on multiple objects.
1630 *
1631 * Note 2: Blocking on a queue set that contains a mutex will not cause the
1632 * mutex holder to inherit the priority of the blocked task.
1633 *
1634 * Note 3: A receive (in the case of a queue) or take (in the case of a
1635 * semaphore) operation must not be performed on a member of a queue set unless
1636 * a call to xQueueSelectFromSet() has first returned a handle to that set member.
1637 *
1638 * @param xQueueSet The queue set on which the task will (potentially) block.
1639 *
1640 * @param xTicksToWait The maximum time, in ticks, that the calling task will
1641 * remain in the Blocked state (with other tasks executing) to wait for a member
1642 * of the queue set to be ready for a successful queue read or semaphore take
1643 * operation.
1644 *
1645 * @return xQueueSelectFromSet() will return the handle of a queue (cast to
1646 * a QueueSetMemberHandle_t type) contained in the queue set that contains data,
1647 * or the handle of a semaphore (cast to a QueueSetMemberHandle_t type) contained
1648 * in the queue set that is available, or NULL if no such queue or semaphore
1649 * exists before before the specified block time expires.
1650 */
1651QueueSetMemberHandle_t xQueueSelectFromSet(QueueSetHandle_t xQueueSet,
1652 const TickType_t xTicksToWait) PRIVILEGED_FUNCTION;
1653
1654/*
1655 * A version of xQueueSelectFromSet() that can be used from an ISR.
1656 */
1657QueueSetMemberHandle_t xQueueSelectFromSetFromISR(QueueSetHandle_t xQueueSet) PRIVILEGED_FUNCTION;
1658
1659/* Not public API functions. */
1660void vQueueWaitForMessageRestricted(QueueHandle_t xQueue, TickType_t xTicksToWait,
1661 const BaseType_t xWaitIndefinitely) PRIVILEGED_FUNCTION;
1662BaseType_t xQueueGenericReset(QueueHandle_t xQueue, BaseType_t xNewQueue) PRIVILEGED_FUNCTION;
1663void vQueueSetQueueNumber(QueueHandle_t xQueue, UBaseType_t uxQueueNumber) PRIVILEGED_FUNCTION;
1664UBaseType_t uxQueueGetQueueNumber(QueueHandle_t xQueue) PRIVILEGED_FUNCTION;
1665uint8_t ucQueueGetQueueType(QueueHandle_t xQueue) PRIVILEGED_FUNCTION;
1666
1667#ifdef __cplusplus
1668}
1669#endif
1670
1671#endif /* QUEUE_H */
Definition FreeRTOS.h:1044