- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我尝试编写一个非常紧凑的环形缓冲区。缓冲区保存 2^X 个值(X:1-7)我需要的是增加 X 位(LSB)但保留其余变量。我有一个解决方案,但我不知道这是否有效(之前从未修改过指针地址)并且它不是那么紧凑。知道如何改进吗?
// hardcoded ringbuffersize for better ram usage
// this frees us out, start, end, size variables
// 7 == 128, 6 == 64
#define LIGHTWEIGHT_RING_BUFFER_BITS 7
#define LIGHTWEIGHT_RING_BUFFER_SIZE (1<<LIGHTWEIGHT_RING_BUFFER_BITS)
// thatswhy we cant use 256 buffer size
#define LIGHTWEIGHT_RING_BUFFER_DISABLED LIGHTWEIGHT_RING_BUFFER_SIZE+1
// save new data
*Buffer->In = Data;
// save LSB bits
uint8_t pointermask = Buffer->In;
// discard all LSB bits
Buffer->In >>= LIGHTWEIGHT_RING_BUFFER_BITS;
Buffer->In <<= LIGHTWEIGHT_RING_BUFFER_BITS;
// save the LSB bits + 1
Buffer->In |= ++pointermask & (LIGHTWEIGHT_RING_BUFFER_SIZE - 1)
Buffer->Count++;
最佳答案
这是一个简单的环形缓冲区实现的样子。环形缓冲区的大小由 MASK
确定。 MASK
的值必须为 2n-1,其中 n <= 8
。对于 256 字节环形缓冲区,您可以完全消除掩码。
#include <stdio.h>
#include <stdbool.h>
#include <stdint.h>
#define MASK 7
typedef struct
{
uint8_t head;
uint8_t tail;
uint8_t data[MASK + 1];
}
stRingBuffer;
stRingBuffer ringBuffer = { 0, 0 };
// returns true if successful, false if the ring buffer is full
// the argument is the byte that is to be stored in the buffer
bool WriteToRingBuffer( stRingBuffer *buffer, uint8_t data )
{
uint8_t nextHeadValue = (buffer->head + 1) & MASK;
if ( nextHeadValue == buffer->tail )
return( false );
buffer->data[buffer->head] = data;
buffer->head = nextHeadValue;
return( true );
}
// returns a byte from the ring buffer, or 0 if the buffer is empty
// the caller is responsible for making sure the buffer is not empty before calling this function
uint8_t ReadFromRingBuffer( stRingBuffer *buffer )
{
uint8_t data = 0;
if ( buffer->tail != buffer->head )
{
data = buffer->data[buffer->tail];
buffer->tail = (buffer->tail + 1) & MASK;
}
return( data );
}
// returns the number of items currently in the ring buffer
int itemCountInRingBuffer( stRingBuffer *buffer )
{
return( (buffer->head - buffer->tail) & MASK );
}
int main( void )
{
uint8_t data = 31;
// move the head and tail to a non-zero location in the buffer for testing
// this demonstrates proper handling of index wrap-around
ringBuffer.head = 5;
ringBuffer.tail = 5;
// fill the buffer up
while ( WriteToRingBuffer( &ringBuffer, data ) )
{
printf( "Wrote %u, buffer now has %d items\n", data, itemCountInRingBuffer( &ringBuffer ) );
data++;
}
// empty the buffer out
while ( ringBuffer.tail != ringBuffer.head )
{
data = ReadFromRingBuffer( &ringBuffer );
printf( "Read %u, there are %d items remaining\n", data, itemCountInRingBuffer( &ringBuffer ) );
}
}
请注意,如果您打算使用环形缓冲区在线程之间传递数据,或者从中断例程到后台代码传递数据,那么您要么需要使用适当的锁定机制,要么需要成为无锁多线程方面的专家- 线程。
关于c - 增加指针的 LSB 位但保留其余部分(硬编码环形缓冲区大小),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25371105/
算力时代,视频云需要怎样的 CPU? 在数据爆发式增长及算法日益精进的大背景下,属于「算力」的时代俨然到来。随着视频成为互联网流量的主角,日趋饱和的音视频场景渗透率、人类对“感官之限”的追
我正在使用 keras 开发深度网络。有一个激活“硬 sigmoid”。它的数学定义是什么? 我知道什么是 Sigmoid。有人在Quora上问了类似的问题:https://www.quora.com
我有一个不寻常的 SQL 问题,我不太确定如何最好地解释,所以请耐心等待。我有三张表,一张是志愿者组织的表,一张是用户的表,一张是用户详细信息的表。 #Table 1# ## Name Preside
我正在尝试使用名为 bigText 的 jquery 插件。一个很棒的用于创建 block 头的插件。如果您想将其与自定义字体一起使用,它会声明您需要 google webfont loader,这样
假设我有一张 table date,personid 1/1/2001 1 1/2/2001 3 1/3/2001 2 1/4/2001 2 1/5/2001 5 1/6/2001 5 1/7/200
下面是我要执行的 SQL。我想避免为此执行多个请求,我很确定这是可能的…… First table : products_categories (category_id, category_infos
我在 android studio 中重新设置了一些提交,并选择了硬重置类型。我失去了一个星期的工作。是否有希望撤销此操作?我正在使用 android studio,它有内置的 GUI 选项来执行所有
当我使用我的交叉工具链编译 C 代码时,链接器会打印出警告页面,说明我的可执行文件使用了硬 float ,但我的 libc 使用了软 float 。有什么区别? 最佳答案 硬浮点使用片上浮点单元。软
linux系统有arm64,arm架构armv8-a。如何知道 debian 是运行硬浮点还是软浮点? 最佳答案 符合 AAPCS64, GNU GCC for armv8 仅提供硬浮点 aarch6
我正在开发 cortex-m3 的微内核。我创建了一个故意导致错误的小型测试应用程序。 现在我不确定如何从故障中返回。我知道堆栈可能需要使用不同函数的地址进行更新。我也知道在某些情况下从错误返回可能是
硬/软 限制是什么意思? 核心文件大小的差异例如: ulimit -Sc 1024 与 ulimit -Hc 1024 我通常在运行二进制文件之前将脚本放入 ulimit -c unlimited。
我想在 Java 中加载一个 MSCAPI keystore 并检查 MY 存储中的可用证书。但是,这些证书的一些 key 驻留在硬件 token 上,并且弹出窗口会在加载期间询问 token 。 有
是的,这是一个有点棘手的问题; 一个数组(没有副本),而不是任何奇数数组。让我解释一下,让我们从这里开始; $a = array ( 'one' => 1, 'two' => 2, 'three' =
我需要在运行 Ubuntu 12.04 的 BeagleBoard xM rev C 上运行一个使用 ftd2xx 的程序。我正在尝试使用提供的 ARM 库 libftd2xx.so here . l
我是一名优秀的程序员,十分优秀!