Skip to content
master
Go to file
Code

Latest commit

 

Git stats

Files

Permalink
Failed to load latest commit information.
Type
Name
Latest commit message
Commit time
 
 
 
 
 
 
 
 
 
 

README.md

CircularQueue

Generic Circular Queue Buffer implementation for Embedded Systems

Here is the Internal Structure of the Circular Queue

struct {
uint8_t * data; 	//To store the Actual Data
uint16_t max;   	//Maximum Size of the array
uint16_t front,rear;//Pointer for the queue
uint16_t inuse;//For protected Queue Handling
}cqueue_t;`

Designed By

A.D.H.A.R Labs Research,Bharat(India)

Abhijit Bose [email protected]

http://adharlabs.in

License

Creative Commons Attribution-ShareAlike 3.0 Unported

CC BY-SA 3.0

Full Text

About

Generic Circular Queue Buffer implementation for Embedded Systems

Topics

Resources

Releases

No releases published

Packages

No packages published
You can’t perform that action at this time.