Quality RTOS & Embedded Software

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


Loading

Send to beginning of Queue

Posted by Nobody/Anonymous on June 27, 2005
I was wondering if there is a way to post to the beginning of the queue. In the event of an emergency i want to post to the beginning of the queue.

Is this possible?

RE: Send to beginning of Queue

Posted by Nobody/Anonymous on June 27, 2005
There is no way of doing this with the standard code but I think it would be easy to do with the addition of another function (xQueueSendEmergency() or something).

Queues are simply a block of RAM with a couple of pointers. One pointer points to the next block that can be written (the end of the queue), and another the next block that should be read (the front of the queue).

When you write to a queue the data is copied to the "next write" block, then the next write pointer is incremented past this block to again point to the next free block. This is done by the macro prvCopyQueueData().

If you wanted to write to the start of the queue then you could instead decrement the next read pointer (so it points to a free block at the front of the queue), then copy the data being queued into that position. This way the next time the queue was read the read pointer would point to the data you just wrote.

This is just theory - I have not actually tried it. You would basically copy the xQueueSend() function, but replay the prvCopyQueueData() macro with one that wrote to the other end of the queue.


RE: Send to beginning of Queue

Posted by Nobody/Anonymous on June 27, 2005
Thanks for pointing out to th epart where i need to make the changes i try it out.


[ 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