Skip to content

ddevaz/CircularQueue

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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 info@adharlabs.in

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

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published