Expand description
Type-safe FIFO queue for oveRTOS.
Queue<T, N> is a fixed-capacity, thread-safe FIFO that transfers items of
type T (which must be Copy) between threads or between ISR and thread
contexts. N is the maximum number of items the queue can hold.
Structsยง
- Queue
- Type-safe FIFO queue with compile-time capacity.