Queue and several receiver

1) Is it possible to have more than one sender for the same queue. My opinion Yes it should be possible. The messages will be stored inside the buffer. 2) Is it possible to have more than one reciever for the same queue? My opinion NO, because = who shoul take the message is more than one task are able to receive the message. Thank you for your contribution

Queue and several receiver

Answers – 1) Yes. 2) Yes. The reason the answer to question 2 is yes is because tasks are blocked in priority order. If more than one task is blocked on the same queue then the higher priority task will be the task that receives the next data. If both (or more) tasks have the same priority then the first task to block will be the first task to receive the data.

Queue and several receiver

Thank you for the answer :)

Queue and several receiver

If i want to send one and the same message to three receiver task than i have to generate three queues and send the same message in every queue?

Queue and several receiver

or you could have two tasks peek the queue and one receive the queue as long as the peeking tasks are higher priority so they wake first.

Queue and several receiver

I will write an eBook about FreeRTOS on www.ebookaktiv.de and www.ebooksmechatronic.com First time in german language but next year it will be translated to english.

Queue and several receiver

I’m a fare way down the route of writing some more comprehensive and printable documentation, but unfortunately time constraints mean it will be a little while before this is published. Regards.