Quality RTOS & Embedded Software

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


Loading

Data sharing btwn 2 tasks - Best Design?

Posted by jinx on May 14, 2010
I have two tasks A and B and I am looking for the best design mechanism using queues and/or semaphores to allow A to query B and then retrieve the data from B. Do you have a better method of doing this? The design I came up with is as follows:

I will first create a semaphore between A->B and a queue between B->A;

1. When A needs data, it will release the semaphore and then block on the queue from B->A.
2. B, that was blocking on the semaphore, will unblock, and then post the data on to the queue B->A.
3. A that was blocking on the queue will then unblock and then retrieve the data from the queue to allow further processing.

Is this the best way of doing it, or is there a better way?

Thanks!

RE: Data sharing btwn 2 tasks - Best Design?

Posted by Richard Damon on May 15, 2010
That method would work, my one thought is that if the tasks are really interlocked like this so only one of them is active at a time, what keeps you from combining them into a single task.

your method is basically

void taska(void* p) {
while(1){
signal sema
pop data from queue
processing A
}
}
void taskb(void* p) {
while(1){
wait for sema
processing B
push data to queue
}
}

And this can generally be replaced with:

void task(void *p){
while(1) {
processing B
processing A
}
}


[ 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