摘要: 环形缓冲区 //缓存区大小 #define PM_BUF_SIZE 1024 //获取当前缓冲区的数据个数 #define circ_cnt(head, tail, size) (((head) > (tail)) ? \ ((head) - (tail)) : \ ((head) - (tail) 阅读全文
posted @ 2021-12-01 18:51 R1chie 阅读(179) 评论(0) 推荐(0) 编辑