Quality RTOS & Embedded Software

 Real time embedded FreeRTOS RSS feed 
Quick Start Supported MCUs PDF Books Trace Tools Ecosystem


Loading

how to wait on multiple queues

Posted by bodev on November 27, 2008
Hi all,
i was wondering the best method to wait on multiple queues and being woken up by either one of them.
i was thinking of using a binary (or counting?) semaphore to acknoweledge that one (or more) queues have new elements.

the task can wait on the semaphore and if woken up test on each queue if there are messages available.

what do you think?
suggestions?
any other way for doing that more efficiently?

thanks,
Bo

RE: how to wait on multiple queues

Posted by Bert Menkveld on November 27, 2008
I ran into exactly the same thing in a recent application. I also started to think about a semaphore to trigger the waiting task into inspecting the various queues. However, I didn't like the extra overhead of checking all the queues every time the semaphore is triggered.

Instead, I changed the design of my application. Since I was writing the data "producers" as well as the "consumer", I changed the design to a single queue containing a union of the different types of data produced by the various producers. The producer tasks all send to the one queue, and the consumer task simply waits on the one queue.

This worked for me because there was not a huge difference in data size from the different producer tasks. If you had a high frequency producer sending 1-byte data, and a low-frequency producer sending 100-byte data, this would not be a good plan since each 1-byte data message would be 100 bytes in size, so you'd have a lot of needless data copying going on.

--
Bert Menkveld


[ Back to the top ]    [ About FreeRTOS ]    [ Privacy ]    [ Sitemap ]    [ ]


Copyright (C) Amazon Web Services, Inc. or its affiliates. All rights reserved.

Latest News

NXP tweet showing LPC5500 (ARMv8-M Cortex-M33) running FreeRTOS.

Meet Richard Barry and learn about running FreeRTOS on RISC-V at FOSDEM 2019

Version 10.1.1 of the FreeRTOS kernel is available for immediate download. MIT licensed.

View a recording of the "OTA Update Security and Reliability" webinar, presented by TI and AWS.


Careers

FreeRTOS and other embedded software careers at AWS.



FreeRTOS Partners

ARM Connected RTOS partner for all ARM microcontroller cores

Espressif ESP32

IAR Partner

Microchip Premier RTOS Partner

RTOS partner of NXP for all NXP ARM microcontrollers

Renesas

STMicro RTOS partner supporting ARM7, ARM Cortex-M3, ARM Cortex-M4 and ARM Cortex-M0

Texas Instruments MCU Developer Network RTOS partner for ARM and MSP430 microcontrollers

OpenRTOS and SafeRTOS

Xilinx Microblaze and Zynq partner