Skip to content

Instantly share code, notes, and snippets.

View jerrylogansquare's full-sized avatar
🏠
Working from home

Jerry Morrow jerrylogansquare

🏠
Working from home
  • Chicago, Illinois, USA
View GitHub Profile
b/**
* @file circbuff.c
* @brief A circular byte buffer implemtation optimized for UART interfaces.
* Please note design for multiple instances of circular buffers.
*
*
*/
#include <stdint.h>
#include <stdbool.h>