utils
utilities in C for microcontrollers
Data Fields
queue_NAME Struct Reference

instance type generated by QUEUE with name set to NAME, type set to TYPE, and size set to SIZE More...

#include <queue.h>

Data Fields

TYPE storage [SIZE]
 PRIVATE
an array for storing elements in the queue.
 
size_t read
 PRIVATE
index to the next item to be read.
 
size_t write
 PRIVATE
index to the next location to write an item.
 
size_t count
 PRIVATE
the number of items in the queue.
 

Detailed Description

instance type generated by QUEUE with name set to NAME, type set to TYPE, and size set to SIZE


The documentation for this struct was generated from the following file: