This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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> |