2020-07-11 10:18:03 +08:00
|
|
|
|
/******************************************************************************
|
|
|
|
|
* @brief <EFBFBD><EFBFBD><EFBFBD>λ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>(<EFBFBD>ο<EFBFBD>linux/kfifo)
|
|
|
|
|
*
|
2020-12-04 20:53:54 +08:00
|
|
|
|
* Copyright (c) 2016~2020, <morro_luo@163.com>
|
2020-07-11 10:18:03 +08:00
|
|
|
|
*
|
|
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
|
|
|
*
|
|
|
|
|
* Change Logs:
|
|
|
|
|
* Date Author Notes
|
|
|
|
|
* 2016-05-30 Morro <EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|
|
|
|
******************************************************************************/
|
|
|
|
|
|
|
|
|
|
#ifndef _RING_BUF_H_
|
|
|
|
|
#define _RING_BUF_H_
|
|
|
|
|
|
|
|
|
|
#include <stdbool.h>
|
|
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
|
extern "C" {
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
/*<2A><><EFBFBD>λ<EFBFBD><CEBB><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>*/
|
|
|
|
|
typedef struct {
|
|
|
|
|
unsigned char *buf; /*<2A><><EFBFBD>λ<EFBFBD><CEBB><EFBFBD><EFBFBD><EFBFBD> */
|
|
|
|
|
unsigned int size; /*<2A><><EFBFBD>λ<EFBFBD><CEBB><EFBFBD><EFBFBD><EFBFBD> */
|
|
|
|
|
unsigned int front; /*ͷָ<CDB7><D6B8> */
|
|
|
|
|
unsigned int rear; /*βָ<CEB2><D6B8> */
|
|
|
|
|
}ring_buf_t;
|
|
|
|
|
|
|
|
|
|
bool ring_buf_init(ring_buf_t *r,unsigned char *buf,unsigned int size);
|
|
|
|
|
|
|
|
|
|
void ring_buf_clr(ring_buf_t *r);
|
|
|
|
|
|
|
|
|
|
unsigned int ring_buf_len(ring_buf_t *r);
|
|
|
|
|
|
|
|
|
|
unsigned int ring_buf_put(ring_buf_t *r,unsigned char *buf,unsigned int len);
|
|
|
|
|
|
|
|
|
|
unsigned int ring_buf_get(ring_buf_t *r,unsigned char *buf,unsigned int len);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
|
}
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#endif
|