FreeRTOS part 5: queues
This is the fifth post in my FreeRTOS series. So far I have introduced tasks, that simply exist performing on their own with little actual communication between them, while also yielding (moving to Blocked state) by using vTaskDelay, which is just a temporal event without any synchronization. This means that even though there would be something to process, the task is waiting until vTaskDelay timeout is reached. ...