Implementing an Asynchronous Dispatch Queue with FreeRTOS

We previously provided an implementation of a dispatch queue using ThreadX RTOS primitives. In this article, I'll provide an example C++ dispatch queue implementation using the popular FreeRTOS. We'll start with a review of what dispatch queues are. If you're familiar with them, feel free to skip to the following section. Table of Contents: A …