FreeRTOS QUEUE STM32F4|| KEIL UVision || STM32CUBEIDE ||STM32 HAL

Опубликовано: 23 Июль 2026
на канале: Hayducate
1,008
15

This tutorial demonstrates how to use FreeRTOS Queues for inter-task communication.
A queue is circular buffer ,however this buffer contains some special properties such as multithread safety, the flexibility for each queue to hold any type of data and waking u other tasks that are waiting on an item to appear on the queue.
You will learn How to:
1. Declare the handle to the queue
2. Create the Queue using xqueueCreate() function
3.How to send data to the queue
4.How to receive data from the queue upon availabilty of data in the queue.