2 Star 1 Fork 2

David Hu/ring_fifo_module

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
ring_fifo.h 2.05 KB
一键复制 编辑 原始数据 按行查看 历史
David Hu 提交于 2023-04-14 22:03 . [update]优化数据结构体定义
/**
* @file ring_fifo.h
* @author David Hu (hmd_hubei_cn@163.com)
* @brief 环形缓冲区(环形队列)的实现
* @version 1.0
* @date 2023-04-13
*
* @copyright Copyright (c) 2023 David
*
*/
#ifndef __RING_FIFO_H__
#define __RING_FIFO_H__
#ifdef __cplusplus
extern "C" {
#endif /* __cplusplus */
#define DATA_TYPE unsigned char
typedef DATA_TYPE data_t;
#define RING_FIFO_SIZE 100
// #define DYNAMIC_INSTANT_CREATE
#ifndef DYNAMIC_INSTANT_CREATE
#define STATIC_INSTANT_CREATE_ENABLE 1
#define DYNAMIC_INSTANT_CREATE_ENABLE 0
#else
#define STATIC_INSTANT_CREATE_ENABLE 0
#define DYNAMIC_INSTANT_CREATE_ENABLE 1
#endif /* DYNAMIC_INSTANT_CREATE */
#pragma pack(1) // 1字节对齐
typedef struct ring_fifo_struct {
data_t data_buf[RING_FIFO_SIZE]; /* 缓冲区 */
int w_op; /* 写操作 */
int r_op; /* 读操作 */
} ring_fifo_t, *p_ring_fifo_t;
#pragma pack() // 恢复默认对齐
// public function declare
/**
* @brief 环形队列写入数据
*
* @return p_ring_fifo_t
* NULL: 创建失败
* 非NULL: 创建成功
*/
p_ring_fifo_t ring_fifo_create(void);
/**
* @brief 销毁环形队列
* @param [in] p_ring_fifo [环形队列首地址]
* @return int
* -1: 环形队列未初始化
* 0: 成功
*/
int ring_fifo_destroy(p_ring_fifo_t p_ring_fifo);
/**
* @brief 向环形队列中写入数据
* @param [in] p_ring_fifo [环形队列首地址]
* @param [in] data [写入的数据]
* @return int
* -1: 环形队列未初始化
* -2: 环形队列已满
* 0: 写入数据成功
*/
int ring_fifo_write(p_ring_fifo_t p_ring_fifo, data_t data);
/**
* @brief 从环形队列中读取数据
* @param [in] p_ring_fifo [环形队列首地址]
* @param [out] p_data [读取的数据]
* @return int
* -1: 环形队列未初始化
* -2: 环形队列已空
* 0: 读取数据成功
*/
int ring_fifo_read(p_ring_fifo_t p_ring_fifo, data_t *p_data);
#ifdef __cplusplus
}
#endif /* __cplusplus */
#endif /* __RING_FIFO_H__ */
/* **************** copyright @ 2023 David Hu *** END OF FILE *** */
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C
1
https://gitee.com/mingdonghu/ring_fifo_module.git
git@gitee.com:mingdonghu/ring_fifo_module.git
mingdonghu
ring_fifo_module
ring_fifo_module
master

搜索帮助